From a5af96664dbe4d8a7e0ea53ff4bd425d6d37c279 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 5 May 2025 08:03:25 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-9689899 - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-9712315 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-9712315 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-9712315 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 87123311a0..9602e24e19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY ./pyproject.toml /tmp/pyproject.toml COPY ./poetry.lock /tmp/poetry.lock RUN poetry export -f requirements.txt --output requirements.txt --without-hashes -FROM python:3.11-slim-bookworm +FROM python:3.13.3-slim-bookworm WORKDIR /app COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt RUN pip install --no-cache-dir --upgrade -r requirements.txt