From 0918e88368df3d0f21b5f51aaa293b80ce90a132 Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Fri, 27 Mar 2026 05:37:35 +0200 Subject: [PATCH] chore(docs): update Docker build command in README (#7972) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cde3d9ea2..00f3819be 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ setup a Go environment, you could build CoreDNS easily: ``` docker run --rm -i -t \ -v $PWD:/go/src/github.com/coredns/coredns -w /go/src/github.com/coredns/coredns \ - golang:1.24 sh -c 'GOFLAGS="-buildvcs=false" make gen && GOFLAGS="-buildvcs=false" make' + golang:1.25 sh -c 'GOFLAGS="-buildvcs=false" make gen && GOFLAGS="-buildvcs=false" make' ``` The above command alone will have `coredns` binary generated.