1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/dnsmasq/Dockerfile
2017-05-08 07:05:07 +08:00

20 lines
344 B
Docker

#
# Dockerfile for dnsmasq
#
FROM alpine
MAINTAINER kev <norelply@easypi.pro>
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"]