Dockerfile 629 B

12345678910111213141516171819202122232425262728
  1. FROM alpine:3.20
  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 --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community/
  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"]