From f633aa9fe1597239e18651b10f1d0ad8f72a1ed5 Mon Sep 17 00:00:00 2001 From: Vladislav Byrgazov Date: Tue, 22 Oct 2024 11:53:55 +0500 Subject: [PATCH] Updated coredns version Signed-off-by: Vladislav Byrgazov --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e6e66ae..cb48a43 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,9 +9,9 @@ ARG BUILDARCH=amd64 RUN rm -r /etc/vpp RUN go install github.com/go-delve/delve/cmd/dlv@v1.21.0 ADD https://github.com/spiffe/spire/releases/download/v1.10.3/spire-1.10.3-linux-${BUILDARCH}-musl.tar.gz . -ADD https://github.com/coredns/coredns/releases/download/v1.11.1/coredns_1.11.1_linux_${BUILDARCH}.tgz . +ADD https://github.com/coredns/coredns/releases/download/v1.11.3/coredns_1.11.3_linux_${BUILDARCH}.tgz . RUN tar xzvf spire-1.10.3-linux-${BUILDARCH}-musl.tar.gz -C /bin --strip=2 spire-1.10.3/bin/spire-server spire-1.10.3/bin/spire-agent -RUN tar xzvf coredns_1.11.1_linux_${BUILDARCH}.tgz -C /bin coredns +RUN tar xzvf coredns_1.11.3_linux_${BUILDARCH}.tgz -C /bin coredns FROM go as build WORKDIR /build