Skip to content

Commit b1cf241

Browse files
committed
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
1 parent f1cf7f0 commit b1cf241

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/quart_api/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8-alpine as builder
1+
FROM python:3.13.2-alpine as builder
22

33
ENV PYTHONDONTWRITEBYTECODE=1
44
ENV PYTHONUNBUFFERED=1
@@ -17,7 +17,7 @@ RUN POETRY_VIRTUALENVS_CREATE=false poetry install --no-dev
1717

1818

1919

20-
FROM python:3.8-alpine as final
20+
FROM python:3.13.2-alpine as final
2121

2222
RUN apk --no-cache add libstdc++
2323

0 commit comments

Comments
 (0)