⬆️(docker) upgrade backend image to python 3.13

Python 3.13 is now stable, our libraries are compatible with it. We also
upgrade the alpine version and node one used in the backend.
This commit is contained in:
lebaudantoine
2025-06-23 14:28:54 +02:00
committed by aleb_the_flash
parent fb8b2d752b
commit 0b25374cef
5 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
FROM python:3.12-slim AS builder
FROM python:3.13-slim AS builder
WORKDIR /app
@@ -6,7 +6,7 @@ COPY pyproject.toml .
RUN pip3 install --no-cache-dir .
FROM python:3.12-slim AS production
FROM python:3.13-slim AS production
WORKDIR /app