mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-14 04:07:57 +01:00
23 lines
440 B
Docker
23 lines
440 B
Docker
|
FROM fedora:27
|
||
|
MAINTAINER "Peter Schiffer" <pschiffe@redhat.com>
|
||
|
|
||
|
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf \
|
||
|
&& dnf -y --setopt=install_weak_deps=False install \
|
||
|
pdns-recursor \
|
||
|
&& dnf clean all
|
||
|
|
||
|
RUN pip3 install envtpl \
|
||
|
&& rm -rf ~/.cache/*
|
||
|
|
||
|
ENV VERSION=4.0.6 \
|
||
|
PDNS_setuid=recursor \
|
||
|
PDNS_setgid=recursor \
|
||
|
PDNS_daemon=no
|
||
|
|
||
|
EXPOSE 53 53/udp
|
||
|
|
||
|
COPY recursor.conf.tpl /
|
||
|
COPY docker-cmd.sh /
|
||
|
|
||
|
CMD [ "/docker-cmd.sh" ]
|