mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-11 02:57:57 +01:00
26ad6bfbe2
Resolves #50
27 lines
522 B
Docker
27 lines
522 B
Docker
FROM alpine:3.13
|
|
|
|
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.4 \
|
|
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" ]
|