2017-06-12 16:45:12 +08:00
|
|
|
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 \
|
2018-01-14 17:34:06 +08:00
|
|
|
acme-client \
|
2017-12-09 20:15:24 +08:00
|
|
|
curl \
|
|
|
|
openssl \
|
|
|
|
bind-tools \
|
|
|
|
jq \
|
|
|
|
mariadb-client \
|
|
|
|
redis \
|
2018-06-28 04:50:31 +08:00
|
|
|
tini \
|
|
|
|
tzdata
|
2017-06-12 16:45:12 +08:00
|
|
|
|
|
|
|
COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
|
2018-06-27 05:10:24 +08:00
|
|
|
COPY expand6.sh /srv/expand6.sh
|
2017-06-12 16:45:12 +08:00
|
|
|
|
2017-10-21 16:08:14 +08:00
|
|
|
CMD ["/sbin/tini", "-g", "--", "/srv/docker-entrypoint.sh"]
|