~dricottone/container-images

ref: e61b929e86a9f7fb86ddc619e5d2a25ced8d3d28 container-images/dnsmasq/Dockerfile -rw-r--r-- 217 bytes
e61b929eDominic Ricottone Okay now really things are updated a month 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"]