From 626e004acd58dff4e37e1425c911e2bfd039d367 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 19 Feb 2026 10:01:09 +0000 Subject: [PATCH] fix: docker/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-SQLITE3-10753055 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-15123192 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-15123192 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUPG2-14723302 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690985 --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 4612367..2ccbe2e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ # Use Chainguard's Python image -FROM python:3.13.2-slim AS builder +FROM python:3.14.3-slim AS builder ENV PYTHONUNBUFFERED=1 ENV PYTHONDONTWRITEBYTECODE=1 @@ -22,7 +22,7 @@ RUN echo $PATH RUN CC=gcc uv sync --frozen --no-dev #FROM cgr.dev/chainguard/python:latest-dev -FROM python:3.13.2-slim +FROM python:3.14.3-slim # Set the working directory WORKDIR /app