From 2c846255fdc05bcfa8b02d684e1f2991e5f4f706 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 26 Dec 2024 02:06:26 +0000 Subject: [PATCH] fix: api/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-7855502 - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-7855503 - https://snyk.io/vuln/SNYK-DEBIAN12-EXPAT-7855507 - https://snyk.io/vuln/SNYK-DEBIAN12-SQLITE3-6139924 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 --- api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index 0161eb4..f3cbb22 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,5 +1,5 @@ # Use a specific version for the base image -FROM python:3.13.0a6-slim AS build-env +FROM python:3.14.0a3-slim AS build-env # Set working directory WORKDIR /api @@ -17,7 +17,7 @@ RUN pip install --no-cache-dir -r requirements.txt COPY api/ ./api/ # Actual runtime image -FROM python:3.13.0a6-slim +FROM python:3.14.0a3-slim # Set working directory WORKDIR /api