docker-pdns/pdns-recursor/Dockerfile.alpine
Peter Schiffer 3eb84f8573 Revert "Latest jinja2 breaks envtpl"
envtpl has been updated to work with the latest jinja2

This reverts commit 72a9919cec.
2023-04-21 20:51:23 +02:00

27 lines
524 B
Docker

FROM alpine:3.17.3
RUN apk add --no-cache \
pdns-recursor \
py3-pip \
python3
RUN pip3 install --no-cache-dir envtpl
RUN mkdir -p /etc/pdns/api.d \
&& chown -R recursor: /etc/pdns/api.d \
&& mkdir -p /var/run/pdns-recursor \
&& chown -R recursor: /var/run/pdns-recursor
ENV VERSION=4.7 \
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" ]