1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:16:44 +02:00
dockerfiles/dnsmasq/Dockerfile

20 lines
345 B
Docker
Raw Normal View History

2016-04-14 01:36:03 +08:00
#
# Dockerfile for dnsmasq
#
FROM alpine
2016-07-12 13:43:54 +08:00
2016-05-01 09:06:20 +08:00
MAINTAINER kev <norelply@easypi.info>
2016-04-14 01:36:03 +08:00
RUN set -xe \
2016-07-12 13:43:54 +08:00
&& apk add --no-cache dnsmasq \
&& echo "conf-dir=/etc/dnsmasq.d/,*.conf" >> /etc/dnsmasq.conf
2016-04-14 01:36:03 +08:00
VOLUME /etc/dnsmasq.d
2016-07-12 13:43:54 +08:00
EXPOSE 53/tcp \
53/udp \
67/udp
2016-04-14 01:36:03 +08:00
2016-07-12 13:43:54 +08:00
ENTRYPOINT ["dnsmasq", "--no-daemon", "--user=dnsmasq", "--group=dnsmasq"]