mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-13 03:47:56 +01:00
25 lines
530 B
Docker
25 lines
530 B
Docker
FROM fedora:30
|
|
MAINTAINER "Peter Schiffer" <peter@rfv.sk>
|
|
|
|
RUN dnf -y --setopt=install_weak_deps=False install \
|
|
pdns-recursor \
|
|
&& dnf clean all
|
|
|
|
RUN pip3 install --no-cache-dir envtpl
|
|
|
|
RUN mkdir -p /etc/pdns-recursor/api.d \
|
|
&& chown -R pdns-recursor: /etc/pdns-recursor/api.d
|
|
|
|
ENV VERSION=4.1 \
|
|
PDNS_setuid=pdns-recursor \
|
|
PDNS_setgid=pdns-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" ]
|