From ce56bac2f24e38dce55c315545c89f505a2d8107 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 11 Jan 2026 11:36:39 +0000 Subject: [PATCH] fix: 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-MUSL-8720634 - https://snyk.io/vuln/SNYK-ALPINE321-MUSL-8720634 - https://snyk.io/vuln/SNYK-ALPINE321-SQLITE-9712340 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index be4a470..b43c5e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.8-alpine AS builder +FROM python:3.14.2-alpine AS builder RUN apk update && apk add --no-cache curl @@ -18,7 +18,7 @@ RUN poetry config virtualenvs.create false && \ poetry install --no-root --only main --no-interaction --no-ansi --no-cache; -FROM python:3.12.8-alpine +FROM python:3.14.2-alpine LABEL authors="irudenko" ENV PYTHONUNBUFFERED=1