From 9ecf19244a406ed216452e535fa833922d3c05a9 Mon Sep 17 00:00:00 2001 From: Lennart Jern Date: Mon, 15 Apr 2024 15:55:30 +0300 Subject: [PATCH] Bump go version in Dockerfile Building fails with the old version that is currently there. It would anyway be good to bump the version to stay on maintained and secure versions. Signed-off-by: Lennart Jern --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6f154e11..2e1554d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM pingcap/chaos-build-base AS go_build -RUN curl https://dl.google.com/go/go1.14.6.linux-amd64.tar.gz | tar -xz -C /usr/local +RUN curl https://dl.google.com/go/go1.22.2.linux-amd64.tar.gz | tar -xz -C /usr/local ENV PATH "/usr/local/go/bin:${PATH}" ENV GO111MODULE=on