From aca57ec442f0f06e4f319ce9759382a218fc0eff Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 15 Oct 2025 06:09:43 +0000 Subject: [PATCH] fix: samples/server/petstore/python-fastapi/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-FREETYPE-9402511 - https://snyk.io/vuln/SNYK-DEBIAN12-FREETYPE-9402511 - https://snyk.io/vuln/SNYK-DEBIAN12-FREETYPE-9402511 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-5927132 - https://snyk.io/vuln/SNYK-DEBIAN12-NGHTTP2-5953379 --- samples/server/petstore/python-fastapi/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/server/petstore/python-fastapi/Dockerfile b/samples/server/petstore/python-fastapi/Dockerfile index b66458eb417f..0ed665e9b8c7 100644 --- a/samples/server/petstore/python-fastapi/Dockerfile +++ b/samples/server/petstore/python-fastapi/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7 AS builder +FROM python:3.14.0 AS builder WORKDIR /usr/src/app @@ -11,7 +11,7 @@ COPY . . RUN pip install --no-cache-dir . -FROM python:3.7 AS test_runner +FROM python:3.14.0 AS test_runner WORKDIR /tmp COPY --from=builder /venv /venv COPY --from=builder /usr/src/app/tests tests @@ -24,7 +24,7 @@ RUN pip install pytest RUN pytest tests -FROM python:3.7 AS service +FROM python:3.14.0 AS service WORKDIR /root/app/site-packages COPY --from=test_runner /venv /venv ENV PATH=/venv/bin:$PATH