13 lines
310 B
Docker
13 lines
310 B
Docker
FROM docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_ubuntu:latest
|
|
|
|
RUN apt update && apt upgrade -y
|
|
RUN apt install -y dnsdist
|
|
RUN apt clean
|
|
|
|
EXPOSE 53/tcp 53/udp
|
|
|
|
COPY dnsdist.conf /etc/dnsdist/dnsdist.conf
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dnsdist", "--uid", "dnsdist", "--gid", "dnsdist"]
|
|
CMD ["--supervised"]
|