mailcow/data/Dockerfiles/acme/Dockerfile

19 lines
330 B
Docker
Raw Normal View History

FROM alpine:3.6
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
RUN apk add --update --no-cache \
2017-12-09 20:15:24 +08:00
bash \
acme-client \
2017-12-09 20:15:24 +08:00
curl \
openssl \
bind-tools \
jq \
mariadb-client \
redis \
tini
COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
CMD ["/sbin/tini", "-g", "--", "/srv/docker-entrypoint.sh"]