From fff069c3f6a853db10d023e39b916f474259513e Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 13 Apr 2025 09:30:00 +0000 Subject: [PATCH] fix: web_app/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - 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..8db5d22 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.3-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.3-alpine LABEL authors="irudenko" ENV PYTHONUNBUFFERED=1