Added sample core dns catalog file

This commit is contained in:
2023-01-26 07:12:55 +00:00
parent 061591808d
commit 548b82f310
2 changed files with 62 additions and 5 deletions

View File

@@ -6,12 +6,10 @@ EXPOSE 53/udp
EXPOSE 67/udp
EXPOSE 68/udp
RUN mkdir -p /etc/dnsmasq.d/config
COPY dns.conf /etc/dnsmasq.d/ && \
dhcp-conf /etc/dnsmasq.d/ && \
dhcp-reservations.conf /etc/dnsmasq.d/ && \
hosts.local /etc/dnsmasq.d/ && \
RUN mkdir /etc/dnsmasq.d/config
COPY *.conf /etc/dnsmasq.d/
COPY hosts.local /etc/dnsmasq.d/
COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]