Dockerfile 484 B

1234567891011121314151617181920212223
  1. FROM alpine:3.10
  2. LABEL maintainer "Andre Peters <andre.peters@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. && python3 -m pip install --upgrade pip \
  16. && python3 -m pip install acme-tiny
  17. COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
  18. COPY expand6.sh /srv/expand6.sh
  19. CMD ["/sbin/tini", "-g", "--", "/srv/docker-entrypoint.sh"]