2
0

Dockerfile 430 B

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