From be02bf497dfef0a72e4a45fe7cb0c643604309a8 Mon Sep 17 00:00:00 2001 From: Flynn Date: Wed, 4 Dec 2024 16:37:09 -0500 Subject: [PATCH] Switch the base Python image to use Golang 1.23.3 Signed-off-by: Flynn --- docker/base-python/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/base-python/Dockerfile b/docker/base-python/Dockerfile index 035ae6254a..a6d1725c01 100644 --- a/docker/base-python/Dockerfile +++ b/docker/base-python/Dockerfile @@ -76,7 +76,7 @@ RUN apk --no-cache add \ # 'python3' versions above. RUN pip3 install "Cython<3.0" pip-tools==7.3 -RUN curl --fail -L https://dl.google.com/go/go1.22.4.linux-amd64.tar.gz | tar -C /usr/local -xzf - +RUN curl --fail -L https://dl.google.com/go/go1.23.3.linux-amd64.tar.gz | tar -C /usr/local -xzf - # The YAML parser is... special. To get the C version, we need to install Cython and libyaml, then # build it locally -- just using pip won't work.