From 5c428395ca22b04c81465042ced8e54fa299aab4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 12 Oct 2025 11:06:37 +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-SQLITE-9712340 - https://snyk.io/vuln/SNYK-ALPINE321-SQLITE-12675066 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-13174128 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index be4a470..e5426c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.8-alpine AS builder +FROM python:3.14.0-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.0-alpine LABEL authors="irudenko" ENV PYTHONUNBUFFERED=1