From 052d61604dbd1b8b087855927268b9daa1016933 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 8 Jan 2025 23:35:18 +0000 Subject: [PATCH] fix: backend/quart_api/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE320-EXPAT-8359601 - https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-8235201 - https://snyk.io/vuln/SNYK-ALPINE320-OPENSSL-8235201 --- backend/quart_api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/quart_api/Dockerfile b/backend/quart_api/Dockerfile index bc28093..5e75273 100644 --- a/backend/quart_api/Dockerfile +++ b/backend/quart_api/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-alpine as builder +FROM python:3.14.0a3-alpine as builder ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 @@ -17,7 +17,7 @@ RUN POETRY_VIRTUALENVS_CREATE=false poetry install --no-dev -FROM python:3.8-alpine as final +FROM python:3.14.0a3-alpine as final RUN apk --no-cache add libstdc++