From 670b3c2838e5af33c58eaa6e0584d66df24cad09 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 27 Jul 2025 08:25:21 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-FREETYPE-9402511 - https://snyk.io/vuln/SNYK-DEBIAN12-FREETYPE-9402511 - https://snyk.io/vuln/SNYK-DEBIAN12-FREETYPE-9402511 - https://snyk.io/vuln/SNYK-DEBIAN12-GIT-6846203 - https://snyk.io/vuln/SNYK-DEBIAN12-GIT-6846203 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f3bd932..f505935 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.1 as requirements-stage +FROM python:3.14.0rc1 as requirements-stage WORKDIR /tmp @@ -8,7 +8,7 @@ COPY ./pyproject.toml ./poetry.lock* /tmp/ RUN poetry export -f requirements.txt --output requirements.txt --without-hashes -FROM python:3.12.1 +FROM python:3.14.0rc1 WORKDIR /app