From c6aa4e33f950cafbe5a468d78da18fe36c94ca56 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 17 Aug 2025 09:18:05 +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-9712340 - https://snyk.io/vuln/SNYK-ALPINE321-MUSL-8720634 - https://snyk.io/vuln/SNYK-ALPINE321-MUSL-8720634 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-8690014 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index be4a470..9db4527 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.8-alpine AS builder +FROM python:3.14.0rc2-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.0rc2-alpine LABEL authors="irudenko" ENV PYTHONUNBUFFERED=1