2
0

Dockerfile 562 B

123456789101112131415161718192021222324252627
  1. FROM alpine:3.21
  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. acme-tiny
  16. COPY acme.sh /srv/acme.sh
  17. COPY functions.sh /srv/functions.sh
  18. COPY obtain-certificate.sh /srv/obtain-certificate.sh
  19. COPY reload-configurations.sh /srv/reload-configurations.sh
  20. COPY expand6.sh /srv/expand6.sh
  21. RUN chmod +x /srv/*.sh
  22. CMD ["/sbin/tini", "-g", "--", "/srv/acme.sh"]