Dockerfile 285 B

12345678910111213141516
  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. COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
  12. ENTRYPOINT ["/srv/docker-entrypoint.sh"]