From fec616080e82d4c77710407a12bf1c960794e97e Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Mon, 30 Dec 2024 15:26:04 +0800 Subject: [PATCH] fix: update Python installation command to specify version 3.12 during installation - Modified the Dockerfile to require Python version 3.12 explicitly during the installation process. - This change ensures that the installation script adheres to the specified version, improving consistency and reliability in Docker environments. --- docker/base-image/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/base-image/Dockerfile b/docker/base-image/Dockerfile index 68b65b186..89de4d948 100644 --- a/docker/base-image/Dockerfile +++ b/docker/base-image/Dockerfile @@ -6,7 +6,7 @@ ENV DEBIAN_FRONTEND=noninteractive # Install dependencies COPY ./install /app/install RUN bash /app/install/deps/deps.sh && \ - bash /app/install/python/python.sh + bash /app/install/python/python.sh install 3.12 # Working directory WORKDIR /app/backend