From e630632d9ff9a23185c7b8d9b108a2265890a3da Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 27 Jul 2025 10:22:54 +0000 Subject: [PATCH] fix: web_app/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE321-SQLITE-9712340 - https://snyk.io/vuln/SNYK-ALPINE321-XZ-9666601 --- web_app/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_app/Dockerfile b/web_app/Dockerfile index 7fd07d4..b76f8a9 100644 --- a/web_app/Dockerfile +++ b/web_app/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.2-alpine AS builder +FROM python:3.14.0rc1-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.0rc1-alpine LABEL authors="irudenko" ENV PYTHONUNBUFFERED=1