Skip to content

Commit

Permalink
use python 3.13 as base docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
infinityofspace committed Nov 7, 2024
1 parent 1fc24dd commit 335f2f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-alpine3.19 AS build-image
FROM python:3.13-alpine3.19 AS build-image

RUN apk add --no-cache gcc musl-dev libffi-dev openssl-dev cargo

Expand All @@ -13,7 +13,7 @@ RUN pip install -r requirements.txt
COPY . .
RUN pip install .

FROM python:3.12-alpine3.19
FROM python:3.13-alpine3.19

COPY --from=build-image /opt/venv /opt/venv

Expand Down

0 comments on commit 335f2f4

Please sign in to comment.