1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/dnsmasq/arm/Dockerfile

20 lines
365 B
Docker
Raw Normal View History

2016-07-12 05:43:54 +00:00
#
# Dockerfile for dnsmasq-arm
#
2021-01-26 06:14:13 +00:00
FROM arm32v7/alpine:3
2016-07-12 05:43:54 +00:00
MAINTAINER EasyPi Software Foundation
RUN set -xe \
2021-01-26 06:14:13 +00:00
&& apk add --no-cache dnsmasq-dnssec \
&& echo "conf-dir=/etc/dnsmasq.d,*.conf" >> /etc/dnsmasq.conf
2016-07-12 05:43:54 +00:00
VOLUME /etc/dnsmasq.d
EXPOSE 53/tcp \
53/udp \
67/udp
ENTRYPOINT ["dnsmasq", "--no-daemon", "--user=dnsmasq", "--group=dnsmasq"]