From 88770ac9d51754b87c895c2c03b8a391b7bdd9e6 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 4 Dec 2025 14:30:31 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-SQLITE3-10753055 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690985 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690987 - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-5489190 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690990 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 07f1cc8a..12ead9a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY requirements.txt /app/ RUN pip install --no-cache-dir -r requirements.txt # Second stage for the actual runtime -FROM python:3.13.2-slim +FROM python:3.14.1-slim WORKDIR /app