* dockerfile: remove MAINTAINER is a group effort and the field is deprecated anyways. Fix comment to ref standard instead of impl. detail. * link
9 lines
246 B
Docker
9 lines
246 B
Docker
FROM alpine:latest
|
|
|
|
# Only need ca-certificates & openssl if want to use DNS over TLS (RFC 7858).
|
|
RUN apk --no-cache add bind-tools ca-certificates openssl && update-ca-certificates
|
|
|
|
ADD coredns /coredns
|
|
|
|
EXPOSE 53 53/udp
|
|
ENTRYPOINT ["/coredns"]
|