From 32375ce858187891007fbd50f1cac3f05611123c Mon Sep 17 00:00:00 2001 From: Anoop C S Date: Thu, 22 Aug 2024 17:21:26 +0530 Subject: [PATCH] Dockerfile: Bump Go version to 1.22 go1.23 is now available making go1.22 the oldest supported release. We should now update the Dockerfile accordingly to make go-version-check.sh happy. Signed-off-by: Anoop C S --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e94c586f..f922327c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM docker.io/golang:1.21 as builder +FROM docker.io/golang:1.22 as builder ARG GIT_VERSION="(unset)" ARG COMMIT_ID="(unset)" ARG ARCH=""