Releases: ZiadMansourM/cheapbot
Releases · ZiadMansourM/cheapbot
Stable Production Version
FROM certbot/certbot:v2.8.0
LABEL org.opencontainers.image.source="https://github.com/ziadmmh/cheapbot"
LABEL maintainer="[email protected]"
ENV PYTHONIOENCODING="UTF-8"
RUN pip install -U pip && pip --version
RUN pip install zope.interface==6.1
RUN pip install dns-lexicon==3.17.0
COPY . src/cheapbot
RUN pip install --no-cache-dir src/cheapbot
ENTRYPOINT ["/usr/bin/env"]
- Added support for multi arch images on Docker Hub.
- Pinned version of certbot.
- Pinned versions of packages used
zope.interface==6.1
,dns-lexicon==3.17
.
First Working Version
- Missing Documentation.
- Publish to PyPI.
- Add docs to Pypi and docker hub.
- Automate workflows and hard tags to avoid introducing braking changes.