2017-06-12 10:45:12 +02:00
|
|
|
FROM alpine:3.6
|
|
|
|
|
|
|
|
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
|
|
|
|
|
|
|
RUN apk add --update --no-cache \
|
2017-12-09 13:15:24 +01:00
|
|
|
bash \
|
2018-01-14 10:34:06 +01:00
|
|
|
acme-client \
|
2017-12-09 13:15:24 +01:00
|
|
|
curl \
|
|
|
|
openssl \
|
|
|
|
bind-tools \
|
|
|
|
jq \
|
|
|
|
mariadb-client \
|
|
|
|
redis \
|
2018-06-27 22:50:31 +02:00
|
|
|
tini \
|
|
|
|
tzdata
|
2017-06-12 10:45:12 +02:00
|
|
|
|
|
|
|
COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
|
2018-06-26 23:10:24 +02:00
|
|
|
COPY expand6.sh /srv/expand6.sh
|
2017-06-12 10:45:12 +02:00
|
|
|
|
2017-10-21 10:08:14 +02:00
|
|
|
CMD ["/sbin/tini", "-g", "--", "/srv/docker-entrypoint.sh"]
|