From 94c9208b4f21db798efae51e1ac6a15faf12e4d5 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 14 Apr 2025 05:31:38 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-EXPAT-7855504 - https://snyk.io/vuln/SNYK-DEBIAN11-EXPAT-7855505 - https://snyk.io/vuln/SNYK-DEBIAN11-KRB5-7411316 - https://snyk.io/vuln/SNYK-DEBIAN11-KRB5-7411316 - https://snyk.io/vuln/SNYK-DEBIAN11-KRB5-7411316 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d2cf1aa..b345a8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.1-slim-bullseye AS compile-image +FROM python:3.13.3-slim-bullseye AS compile-image WORKDIR /app @@ -7,7 +7,7 @@ ADD requirements.txt . RUN pip3 install --no-cache-dir -r requirements.txt --user && \ pip list -FROM python:3.12.1-slim-bullseye AS runtime-image +FROM python:3.13.3-slim-bullseye AS runtime-image COPY --from=compile-image /root/.local /root/.local COPY --from=compile-image /etc/ssl /etc/ssl