From dd834be7d82237f86a88a6f8dabe0070e51a747e Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 20 Jul 2025 10:07:11 +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..576bf35 100644 --- a/web_app/Dockerfile +++ b/web_app/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.2-alpine AS builder +FROM python:3.13.5-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.13.5-alpine LABEL authors="irudenko" ENV PYTHONUNBUFFERED=1