docker-pdns/pdns-recursor/Dockerfile.alpine
Peter Schiffer d4c9a2fce5
Update alpine images to 3.11
This also updates the pdns to version 4.2
2020-01-03 17:53:35 +01:00

24 lines
420 B
Docker

FROM alpine:3.11
RUN apk add --no-cache \
pdns-recursor \
python3
RUN pip3 install --no-cache-dir envtpl
RUN mkdir -p /etc/pdns/api.d \
&& chown -R recursor: /etc/pdns/api.d
ENV VERSION=4.2 \
PDNS_setuid=recursor \
PDNS_setgid=recursor \
PDNS_daemon=no
EXPOSE 53 53/udp
COPY recursor.conf.tpl /
COPY docker-entrypoint.sh /
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "/usr/sbin/pdns_recursor" ]