Skip to content

Commit

Permalink
fix: update Python installation command to specify version 3.12 durin…
Browse files Browse the repository at this point in the history
…g 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.
  • Loading branch information
Marvin Zhang committed Dec 30, 2024
1 parent 3438919 commit fec6160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/base-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fec6160

Please sign in to comment.