containerfile: pin wheel>=0.46.2 (CVE-2026-24049)
All checks were successful
CI / Security Scan (push) Successful in 33s
CI / Lint & Format (push) Successful in 37s
CI / Security Tests (push) Successful in 42s
CI / Unit Tests (push) Successful in 1m4s
CI / Advanced Security Tests (push) Successful in 27s
CI / Memory Leak Check (push) Successful in 29s
CI / Fuzz Testing (push) Successful in 39s
CI / SBOM Generation (push) Successful in 30s
CI / Build & Push Image (push) Successful in 39s
CI / Harbor Vulnerability Scan (push) Successful in 37s

This commit is contained in:
Username
2026-02-16 22:26:56 +01:00
parent e9d52d9794
commit cf27bd3f6a

View File

@@ -13,7 +13,7 @@ RUN apk add --no-cache gcc musl-dev libffi-dev
# Create virtual environment and upgrade pip
RUN python -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
RUN pip install --no-cache-dir --upgrade pip wheel
RUN pip install --no-cache-dir --upgrade pip 'wheel>=0.46.2'
# Install Python dependencies (includes security pins from requirements.txt)
COPY requirements.txt .