Dockerfile 330 B

123456789101112131415161718
  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. COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
  14. CMD ["/sbin/tini", "-g", "--", "/srv/docker-entrypoint.sh"]