From c68371b5953c34c78b8ed2d991e297c3c93c1f41 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 3 Jul 2024 07:52:05 +0000 Subject: [PATCH] fix: backend/quart_api/Dockerfile.slim.multi-stage to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6048820 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6048820 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSL-6148845 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 --- backend/quart_api/Dockerfile.slim.multi-stage | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/quart_api/Dockerfile.slim.multi-stage b/backend/quart_api/Dockerfile.slim.multi-stage index 3247178..9bed5a7 100644 --- a/backend/quart_api/Dockerfile.slim.multi-stage +++ b/backend/quart_api/Dockerfile.slim.multi-stage @@ -1,4 +1,4 @@ -FROM python:3.8-slim as builder +FROM python:3.13.0b2-slim as builder RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ apt-get -y upgrade && \ @@ -17,7 +17,7 @@ RUN POETRY_VIRTUALENVS_CREATE=false poetry install --no-dev -FROM python:3.8-slim as final +FROM python:3.13.0b2-slim as final COPY --chown=nobody:nogroup --from=builder /venv /venv ENV PATH=/venv/bin:${PATH}