containerfile: pin wheel>=0.46.2 (CVE-2026-24049)

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 .