From 728cebcca27ecd1479007ff598437304f0d0c2cd Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Fri, 31 Oct 2025 15:37:54 -0400 Subject: [PATCH] More CICD image fixes Signed-off-by: Cliff Hill --- Dockerfile.cicd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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..." && \