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"]