iac/modules/netboot_server/files/dhcp/dnsmasq.Containerfile
Florian Maury 0dd3b5bdfe initial
2024-06-04 17:31:09 +02:00

6 lines
No EOL
203 B
Text

FROM docker.io/alpine:3.19.1
RUN apk add dnsmasq
COPY dnsmasq.conf /etc/dnsmasq.conf
COPY dhcp-options /etc/dnsmasq.options
EXPOSE 67/udp
ENTRYPOINT ["/usr/sbin/dnsmasq", "--conf-file=/etc/dnsmasq.conf"]