iac/modules/netboot_server/files/dhcp/dnsmasq.Containerfile

6 lines
203 B
Text
Raw Permalink Normal View History

2024-06-04 09:25:59 +00:00
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"]