docker-dehydrated/Dockerfile
Jan Christian Grünhage a6ef1720ca
All checks were successful
the build was successful
feat: add lexicon support
add support for the lexicon dns tool, which makes integrating dehydrated with different DNS providers very easy
2018-04-23 10:21:41 +01:00

30 lines
578 B
Docker

FROM docker.jcg.re/base-alpine
RUN apk add --no-cache \
--virtual .build-deps \
git \
python3-dev \
libffi-dev \
build-base \
openssl-dev \
&& apk add --no-cache \
--virtual .runtime-deps \
openssl \
curl \
sed \
grep \
bash \
su-exec \
libxml2-utils \
&& git clone https://github.com/lukas2511/dehydrated /dehydrated \
&& pip3 install requests[security] \
&& pip3 install dns-lexicon \
&& apk del .build-deps
ADD root /
VOLUME /etc/dehydrated
VOLUME /var/www/dehydrated
VOLUME /certs