From a11965bc824ceec0ba3e3606d317729d5f39dbfa Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 15 Jun 2025 08:45:45 +0000 Subject: [PATCH] fix: 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-MUSL-8720634 - https://snyk.io/vuln/SNYK-ALPINE321-MUSL-8720634 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-8690014 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-8710358 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index be4a470..478ac2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.8-alpine AS builder +FROM python:3.13.4-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.13.4-alpine LABEL authors="irudenko" ENV PYTHONUNBUFFERED=1