From cf27bd3f6a56407fcb4f1ab19e080247c8ffddb1 Mon Sep 17 00:00:00 2001 From: Username Date: Mon, 16 Feb 2026 22:26:56 +0100 Subject: [PATCH] containerfile: pin wheel>=0.46.2 (CVE-2026-24049) --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 1a5449d..f6ecb4e 100644 --- a/Containerfile +++ b/Containerfile @@ -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 .