2019-02-04 22:36:17 +01:00
|
|
|
FROM alpine:3.9
|
2017-06-12 10:45:12 +02:00
|
|
|
|
|
|
|
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
|
|
|
|
|
|
|
RUN apk add --update --no-cache \
|
2017-12-09 13:15:24 +01:00
|
|
|
bash \
|
|
|
|
curl \
|
|
|
|
openssl \
|
|
|
|
bind-tools \
|
|
|
|
jq \
|
|
|
|
mariadb-client \
|
|
|
|
redis \
|
2018-06-27 22:50:31 +02:00
|
|
|
tini \
|
2019-02-04 22:36:17 +01:00
|
|
|
tzdata \
|
|
|
|
py-pip \
|
|
|
|
&& pip install --upgrade pip \
|
|
|
|
&& pip install acme-tiny
|
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"]
|