From 434ad1b07c228d0137d9831d87e9c0564d94b992 Mon Sep 17 00:00:00 2001 From: Paulo Castello da Costa Date: Mon, 8 Jul 2024 12:00:32 -0700 Subject: [PATCH] Update go version in containers to go 1.22. (#395) --- containers/pre_built_workers/go/Dockerfile | 2 +- containers/runtime/go/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/pre_built_workers/go/Dockerfile b/containers/pre_built_workers/go/Dockerfile index 0a3b3081..6441bd36 100644 --- a/containers/pre_built_workers/go/Dockerfile +++ b/containers/pre_built_workers/go/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.20 +FROM golang:1.22 RUN mkdir -p /executable WORKDIR /executable diff --git a/containers/runtime/go/Dockerfile b/containers/runtime/go/Dockerfile index e4b19349..4145b0a6 100644 --- a/containers/runtime/go/Dockerfile +++ b/containers/runtime/go/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.20 +FROM golang:1.22 RUN mkdir -p /src/workspace WORKDIR /src/workspace