diff options
author | 2018-03-07 13:52:43 +0000 | |
---|---|---|
committer | 2018-03-07 13:52:43 +0000 | |
commit | 8d27dd7e924082888f3bb61c4ce768bb28b706e2 (patch) | |
tree | b57086d7b6cadb02782962dd357cf60b7683dc33 /Dockerfile | |
parent | 0353abd3f81e9d409de61853e8594972dbe05e99 (diff) | |
download | coredns-8d27dd7e924082888f3bb61c4ce768bb28b706e2.tar.gz coredns-8d27dd7e924082888f3bb61c4ce768bb28b706e2.tar.zst coredns-8d27dd7e924082888f3bb61c4ce768bb28b706e2.zip |
Cleanup Dockerfile further (#1594)
* dockerfile: remove MAINTAINER
is a group effort and the field is deprecated anyways.
Fix comment to ref standard instead of impl. detail.
* link
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 80eab9369..d732c1daf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM alpine:latest -MAINTAINER Miek Gieben <miek@miek.nl> @miekg -# only need ca-certificates & openssl if want to use https_google +# 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 |