diff --git a/Dockerfile.cicd b/Dockerfile.cicd index 8086eb5..b64f3fe 100644 --- a/Dockerfile.cicd +++ b/Dockerfile.cicd @@ -38,8 +38,8 @@ ENV VIRTUAL_ENV=/workspace/backend/.venv # Create venv and leverage pre-installed common tools RUN echo "=== Setting up optimized Python environment ===" && \ uv venv $VIRTUAL_ENV && \ - # Copy common dev tools from base image to speed up installation - /opt/python-dev-tools/bin/uv pip list --format=freeze > /tmp/base-tools.txt && \ + # List pre-installed common tools from base image + uv pip list --python /opt/python-dev-tools/bin/python --format=freeze > /tmp/base-tools.txt && \ echo "Pre-installed tools available:" && \ head -10 /tmp/base-tools.txt && \ echo "Installing project-specific dependencies..." && \