From c31923f4917f5faa45b10cb209e2f9e1ca559609 Mon Sep 17 00:00:00 2001 From: Username Date: Mon, 16 Feb 2026 22:32:55 +0100 Subject: [PATCH] containerfile: pin wheel>=0.46.2 in runtime stage --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index f6ecb4e..e6ae3a7 100644 --- a/Containerfile +++ b/Containerfile @@ -29,7 +29,7 @@ LABEL maintainer="FlaskPaste" LABEL description="Minimal secure pastebin REST API" # Apply security fixes to base image, remove vendored vulnerable packages -RUN pip install --no-cache-dir --upgrade pip 'setuptools>=80.0' 'jaraco.context>=6.1.0' \ +RUN pip install --no-cache-dir --upgrade pip 'wheel>=0.46.2' 'setuptools>=80.0' 'jaraco.context>=6.1.0' \ && pip cache purge 2>/dev/null || true \ && rm -rf /root/.cache /usr/local/lib/python*/site-packages/setuptools/_vendor/jaraco*