From c9505792b6e03d68103d4e4eefbca8d03d9a6ea8 Mon Sep 17 00:00:00 2001 From: Yann Hamon Date: Mon, 5 Aug 2024 15:57:00 +0200 Subject: [PATCH] Update CoreDNS and Go building image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8621e6..997f643 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM golang:1.18-buster AS builder +FROM golang:1.22.5 AS builder RUN apt update && apt upgrade -y && apt install iptables -y -RUN git clone --single-branch --branch v1.9.3 https://github.com/coredns/coredns.git /coredns +RUN git clone --single-branch --branch v1.11.1 https://github.com/coredns/coredns.git /coredns WORKDIR /coredns