~dricottone/container-images

ref: 2cd08baad5738a20fe7666f768229a28a1461d72 container-images/dnsmasq/Dockerfile -rw-r--r-- 217 bytes
2cd08baaDominic Ricottone Logging stack 1 year, 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
FROM docker.io/library/alpine:latest

COPY dnsmasq.conf /etc/dnsmasq.conf

RUN apk add --no-cache dnsmasq dumb-init

EXPOSE 53 53/udp

ENTRYPOINT ["/usr/bin/dumb-init", "--"]

CMD ["dnsmasq", "--keep-in-foreground"]