1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-10 04:19:24 +02:00
dockerfiles/dnsmasq/arm/Dockerfile

20 lines
365 B
Docker
Raw Normal View History

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