From c8cea024a5449264eba46992b826e9c62ea9058e Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Wed, 23 Aug 2023 15:40:53 -0400 Subject: [PATCH] dockerfile: Update base golang image to 1.20 Go 1.20 was recently released so this gets us back on a supported golang version when building via the container. Signed-off-by: John Mulligan --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 11115088..032988ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM docker.io/golang:1.19 as builder +FROM docker.io/golang:1.20 as builder ARG GIT_VERSION="(unset)" ARG COMMIT_ID="(unset)" ARG ARCH=""