6 lines
203 B
Text
6 lines
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"]
|