docker-pdns/pdns-recursor/Dockerfile.alpine

25 lines
420 B
Docker
Raw Normal View History

FROM alpine:3.11
RUN apk add --no-cache \
pdns-recursor \
python3
2018-11-06 22:51:45 +01:00
RUN pip3 install --no-cache-dir envtpl
RUN mkdir -p /etc/pdns/api.d \
2018-11-06 22:51:45 +01:00
&& 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 /
2018-11-22 19:45:43 +01:00
COPY docker-entrypoint.sh /
2018-11-22 19:45:43 +01:00
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "/usr/sbin/pdns_recursor" ]