1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:14:57 +02:00
dockerfiles/dnsmasq/Dockerfile

20 lines
353 B
Docker
Raw Normal View History

2016-04-13 19:36:03 +02:00
#
# Dockerfile for dnsmasq
#
2022-08-19 11:37:46 +02:00
FROM alpine:3
2016-07-12 07:43:54 +02:00
2022-08-19 11:37:46 +02:00
MAINTAINER EasyPi Software Foundation
2016-04-13 19:36:03 +02:00
RUN set -xe \
2020-11-14 06:37:47 +02:00
&& apk add --no-cache dnsmasq-dnssec \
2021-01-26 07:48:02 +02:00
&& echo "conf-dir=/etc/dnsmasq.d,*.conf" >> /etc/dnsmasq.conf
2016-04-13 19:36:03 +02:00
VOLUME /etc/dnsmasq.d
2016-07-12 07:43:54 +02:00
EXPOSE 53/tcp \
53/udp \
67/udp
2016-04-13 19:36:03 +02:00
2016-07-12 07:43:54 +02:00
ENTRYPOINT ["dnsmasq", "--no-daemon", "--user=dnsmasq", "--group=dnsmasq"]