From 6d0fc6ce1b388f526bb3837db4b511e9a1000fbc Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 5 Feb 2026 13:41:22 +0000 Subject: [PATCH] fix: graph_gen/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE321-SQLITE-11191065 - https://snyk.io/vuln/SNYK-ALPINE321-SQLITE-12675067 - https://snyk.io/vuln/SNYK-ALPINE321-SQLITE-9712340 - https://snyk.io/vuln/SNYK-ALPINE321-SQLITE-12675066 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-15121238 --- graph_gen/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph_gen/Dockerfile b/graph_gen/Dockerfile index 0414be7..8a7e901 100644 --- a/graph_gen/Dockerfile +++ b/graph_gen/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.2-alpine AS builder +FROM python:3.14.3-alpine AS builder RUN apk update && apk add curl @@ -18,7 +18,7 @@ RUN poetry config virtualenvs.create false && \ poetry install --only main --no-root --no-interaction --no-ansi --no-cache; -FROM python:3.13.2-alpine +FROM python:3.14.3-alpine LABEL authors="irudenko" ENV PYTHONUNBUFFERED=1