From 66826542b6439801fafeac2ea2a47845a3b42faa Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 22 Dec 2024 07:55:17 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-AOM-7197979 - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-7855502 - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-7855503 - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-7855503 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-7411315 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f3bd932..8820fb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.1 as requirements-stage +FROM python:3.14.0a3 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.0a3 WORKDIR /app