1 2 3 4 5 6 7 8 9 10 11
FROM ubuntu:24.04 RUN apt-get update && \ apt-get install -y bind9 bind9utils dnsutils COPY named.conf /etc/bind/named.conf COPY rndc.key /etc/bind/rndc.key EXPOSE 953 CMD ["named", "-g", "-c", "/etc/bind/named.conf"]