Skip to content

Commit

Permalink
usage python 3.13 as docker image base
Browse files Browse the repository at this point in the history
  • Loading branch information
infinityofspace committed Nov 7, 2024
1 parent 2d1ae6e commit b5499bc
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 docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh
Expand Down

0 comments on commit b5499bc

Please sign in to comment.