1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-01-18 04:59:16 +02:00
mailcow-dockerized/data/Dockerfiles/acme/Dockerfile

20 lines
362 B
Docker

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