Dockerfile 373 B

1234567891011121314151617181920
  1. FROM alpine:3.6
  2. LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
  3. RUN apk add --update --no-cache \
  4. bash \
  5. acme-client \
  6. curl \
  7. openssl \
  8. bind-tools \
  9. jq \
  10. mariadb-client \
  11. redis \
  12. tini \
  13. tzdata
  14. COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
  15. COPY expand6.sh /srv/expand6.sh
  16. CMD ["/sbin/tini", "-g", "--", "/srv/docker-entrypoint.sh"]