From 335f2f4cbb7bfc316a41433e020c7d762431aa5e Mon Sep 17 00:00:00 2001 From: infinityofspace <30715462+infinityofspace@users.noreply.github.com> Date: Thu, 7 Nov 2024 21:49:21 +0100 Subject: [PATCH] use python 3.13 as base docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d824195..6760211 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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