From 8efd2f8d6848c3573458615ba12b74af8b4f07c6 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Sat, 3 Feb 2018 20:05:37 -0500 Subject: [PATCH] fix coredns Signed-off-by: Jess Frazelle --- coredns/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coredns/Dockerfile b/coredns/Dockerfile index a2d91ba..b7b7c62 100644 --- a/coredns/Dockerfile +++ b/coredns/Dockerfile @@ -22,7 +22,7 @@ RUN buildDeps=' \ && apk --no-cache add $buildDeps \ && git clone --depth 1 --branch ${COREDNS_VERSION} https://github.com/coredns/coredns /go/src/github.com/coredns/coredns \ && cd /go/src/github.com/coredns/coredns \ - && make \ + && make CHECKS="godeps" \ && mv coredns /usr/bin/coredns \ && apk del $buildDeps \ && rm -rf /go \