Files
structure/dockerfiles/dnsmasq/Dockerfile
2024-08-23 18:43:23 +03:00

9 lines
150 B
Docker

FROM alpine:latest
# @see https://github.com/mcmar/docker-dnsmasq
RUN apk --no-cache add dnsmasq
EXPOSE 53/tcp 53/udp 67/udp
CMD ["dnsmasq", "-k"]