Dockerfile 622 B

1234567891011121314151617181920212223242526272829
  1. FROM alpine:3.17
  2. LABEL maintainer "The Infrastructure Company GmbH <info@servercow.de>"
  3. RUN apk upgrade --no-cache \
  4. && apk add --update --no-cache \
  5. bash \
  6. curl \
  7. openssl \
  8. bind-tools \
  9. jq \
  10. mariadb-client \
  11. redis \
  12. tini \
  13. tzdata \
  14. python3 \
  15. py3-pip \
  16. && pip3 install --upgrade pip \
  17. && pip3 install acme-tiny
  18. COPY acme.sh /srv/acme.sh
  19. COPY functions.sh /srv/functions.sh
  20. COPY obtain-certificate.sh /srv/obtain-certificate.sh
  21. COPY reload-configurations.sh /srv/reload-configurations.sh
  22. COPY expand6.sh /srv/expand6.sh
  23. RUN chmod +x /srv/*.sh
  24. CMD ["/sbin/tini", "-g", "--", "/srv/acme.sh"]