diff --git a/Dockerfile b/Dockerfile index d7c5a3c..fd929c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,9 @@ FROM golang:1.17 as build RUN git clone https://github.com/coredns/coredns.git /coredns -COPY plugin.cfg /coredns/plugin.cfg.new -RUN mv /coredns/plugin.cfg.new /coredns/plugin.cfg +COPY plugin.cfg /coredns/plugin.cfg + +RUN ls -la /coredns && cat /coredns/plugin.cfg RUN cd /coredns && make