mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 00:04:15 -04:00
11 lines
279 B
Docker
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"]
|