Skip to content

Commit

Permalink
fix: samples/server/petstore/python-fastapi/Dockerfile to reduce vuln…
Browse files Browse the repository at this point in the history
  • Loading branch information
snyk-bot committed Sep 28, 2024
1 parent be618ec commit f341106
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions samples/server/petstore/python-fastapi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7 AS builder
FROM python:3.13.0rc2 AS builder

WORKDIR /usr/src/app

Expand All @@ -11,7 +11,7 @@ COPY . .
RUN pip install --no-cache-dir .


FROM python:3.7 AS test_runner
FROM python:3.13.0rc2 AS test_runner
WORKDIR /tmp
COPY --from=builder /venv /venv
COPY --from=builder /usr/src/app/tests tests
Expand All @@ -24,7 +24,7 @@ RUN pip install pytest
RUN pytest tests


FROM python:3.7 AS service
FROM python:3.13.0rc2 AS service
WORKDIR /root/app/site-packages
COPY --from=test_runner /venv /venv
ENV PATH=/venv/bin:$PATH

0 comments on commit f341106

Please sign in to comment.