Skip to content

Releases: ZiadMansourM/cheapbot

Stable Production Version

26 Dec 11:51
Compare
Choose a tag to compare
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

04 Aug 17:26
Compare
Choose a tag to compare
First Working Version Pre-release
Pre-release
  • Missing Documentation.
  • Publish to PyPI.
  • Add docs to Pypi and docker hub.
  • Automate workflows and hard tags to avoid introducing braking changes.