mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
20 lines
345 B
Docker
20 lines
345 B
Docker
#
|
|
# Dockerfile for dnsmasq
|
|
#
|
|
|
|
FROM alpine
|
|
|
|
MAINTAINER kev <norelply@easypi.info>
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache dnsmasq \
|
|
&& echo "conf-dir=/etc/dnsmasq.d/,*.conf" >> /etc/dnsmasq.conf
|
|
|
|
VOLUME /etc/dnsmasq.d
|
|
|
|
EXPOSE 53/tcp \
|
|
53/udp \
|
|
67/udp
|
|
|
|
ENTRYPOINT ["dnsmasq", "--no-daemon", "--user=dnsmasq", "--group=dnsmasq"]
|