mirror of
https://github.com/coredns/coredns.git
synced 2025-10-26 15:54:16 -04:00
* dockerfile: remove MAINTAINER is a group effort and the field is deprecated anyways. Fix comment to ref standard instead of impl. detail. * link
10 lines
246 B
Docker
10 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"]
|