From 29643de9e24fc36cf46a427ed8f756d0139e9907 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 4 Jul 2025 17:33:09 +0000 Subject: [PATCH] fix: docker/api/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 - https://snyk.io/vuln/SNYK-DEBIAN12-PAM-10378969 - https://snyk.io/vuln/SNYK-DEBIAN12-PAM-10378969 - https://snyk.io/vuln/SNYK-DEBIAN12-PAM-10378969 - https://snyk.io/vuln/SNYK-DEBIAN12-PAM-10378969 --- docker/api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/api/Dockerfile b/docker/api/Dockerfile index 4694ef7..933685f 100644 --- a/docker/api/Dockerfile +++ b/docker/api/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM python:3.12-slim AS builder +FROM python:3.13.5-slim AS builder # Install build dependencies RUN apt-get update && apt-get install -y \ @@ -17,7 +17,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Runtime stage -FROM python:3.12-slim +FROM python:3.13.5-slim # Install runtime dependencies RUN apt-get update && apt-get install -y \