We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c44ec2d commit b45f8b9Copy full SHA for b45f8b9
Dockerfile
@@ -25,6 +25,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends gosu dos2unix &
25
# Copy requirements file first to leverage cache
26
COPY requirements.txt /app/requirements.txt
27
28
+# Vulnerability Fix: Upgrade pip and wheel to patch base image CVEs
29
+# CVE-2026-24049 (Critical): wheel<=0.46.1 -> 0.46.2
30
+# CVE-2025-8869 (Medium): pip==24.0 -> latest
31
+RUN pip install --no-cache-dir --upgrade "pip>=25.0" "wheel>=0.46.2"
32
+
33
# Install dependencies with hash verification
34
# Vulnerability Fix: Pin versions with hashes to prevent supply chain attacks
35
RUN pip install --no-cache-dir --require-hashes -r /app/requirements.txt
0 commit comments