Skip to content

Commit

Permalink
fix: modules/openapi-generator/src/main/resources/python-fastapi/Dock…
Browse files Browse the repository at this point in the history
  • Loading branch information
snyk-bot committed Nov 4, 2024
1 parent 0b37b59 commit e916e64
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7 AS builder
FROM python:3.14.0a1 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.14.0a1 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.14.0a1 AS service
WORKDIR /root/app/site-packages
COPY --from=test_runner /venv /venv
ENV PATH=/venv/bin:$PATH

0 comments on commit e916e64

Please sign in to comment.