15 lines
261 B
Docker
15 lines
261 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
|
||
|
|
||
|
COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT ["/srv/docker-entrypoint.sh"]
|