containerfile: force upgrade pip and jaraco.context post-install
All checks were successful
CI / Security Scan (push) Successful in 20s
CI / Lint & Format (push) Successful in 22s
CI / Advanced Security Tests (push) Successful in 15s
CI / Memory Leak Check (push) Successful in 19s
CI / Security Tests (push) Successful in 25s
CI / Unit Tests (push) Successful in 33s
CI / Fuzz Testing (push) Successful in 25s
CI / SBOM Generation (push) Successful in 20s
CI / Build & Push Image (push) Successful in 26s
CI / Harbor Vulnerability Scan (push) Successful in 34s

This commit is contained in:
Username
2026-01-20 08:16:49 +01:00
parent e4b313041e
commit aba81f908e

View File

@@ -20,7 +20,8 @@ RUN pip install --no-cache-dir --upgrade "pip>=25.3" wheel
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt gunicorn
RUN pip install --no-cache-dir -r requirements.txt gunicorn && \
pip install --no-cache-dir --upgrade "pip>=25.3" "jaraco.context>=6.1.0"
# Stage 2: Alpine runtime (minimal)