Dockerfile 261 B

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