Files
coredns/Dockerfile
2018-03-06 11:29:11 +00:00

11 lines
279 B
Docker

FROM alpine:latest
MAINTAINER Miek Gieben <miek@miek.nl> @miekg
# only need ca-certificates & openssl if want to use https_google
RUN apk --no-cache add bind-tools ca-certificates openssl && update-ca-certificates
ADD coredns /coredns
EXPOSE 53 53/udp
ENTRYPOINT ["/coredns"]