Files
coredns/Dockerfile

11 lines
304 B
Docker
Raw Normal View History

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