From a8bf1156c42982204eab3880ea59822fb41e16b0 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Wed, 25 Dec 2024 18:14:39 +0800 Subject: [PATCH] fix: update default Python version in installation script to 3.12.8 - Changed the default Python version in the Docker base image installation script from 3.12 to 3.12.8 to ensure the latest patch version is used. - This update enhances the reliability and security of the Python installation process in Docker environments. --- docker/base-image/install/python/python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/base-image/install/python/python.sh b/docker/base-image/install/python/python.sh index 408c1b46..d918ca55 100644 --- a/docker/base-image/install/python/python.sh +++ b/docker/base-image/install/python/python.sh @@ -106,7 +106,7 @@ handle_requirements() { # Main logic command="${1:-install}" -version="${2:-3.12}" +version="${2:-3.12.8}" requirements="${3:-}" case $command in