From 768f5a63fa9b1f782f79fc4f57a87cc802a84b8c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 14:32:06 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Update=20python/cpython=20?= =?UTF-8?q?to=20v3.12.0=20(#198)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Franck Nijhof --- base/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/Dockerfile b/base/Dockerfile index 484de85..10c1ae5 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -5,13 +5,13 @@ FROM ${BUILD_FROM} # Environment variables ENV \ PATH="/usr/local/bin:$PATH" \ - GPG_KEY="A035C8C19219BA821ECEA86B64E628F8D684696D" + GPG_KEY="7169605F62C751356D054A26A821E680E5FA6305" # Set shell SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Install base system -ARG PYTHON_VERSION="v3.11.5" +ARG PYTHON_VERSION="v3.12.0" ARG PYTHON_PIP_VERSION="23.2.1" ARG PYTHON_SETUPTOOLS_VERSION="68.2.2" # hadolint ignore=DL3003,DL4006,SC2155