Skip to content

Commit

Permalink
Update python Docker tag to v3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 5, 2023
1 parent 4377302 commit 3320618
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11 AS builder
FROM python:3.12 AS builder

WORKDIR /usr/src/app

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


FROM python:3.11 AS test_runner
FROM python:3.12 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.11 AS service
FROM python:3.12 AS service
WORKDIR /root/app/site-packages
COPY --from=test_runner /venv /venv
ENV PATH=/venv/bin:$PATH

0 comments on commit 3320618

Please sign in to comment.