From 072ce5822240e54a32af4c14b6fad8fe28ff07f1 Mon Sep 17 00:00:00 2001 From: Adrien Guinet Date: Sun, 15 Feb 2026 13:49:14 +0100 Subject: [PATCH] docker image: move python to 3.13 --- Dockerfile.prod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.prod b/Dockerfile.prod index c6a1693..999d683 100644 --- a/Dockerfile.prod +++ b/Dockerfile.prod @@ -1,4 +1,4 @@ -FROM node:18-bullseye-slim as builder +FROM node:18-bullseye-slim AS builder RUN apt-get update && DEBIAN_FRONTEND=non-interactive apt-get install -yqq \ python3 python3-pip && \ mkdir /tmp/secsend @@ -9,7 +9,7 @@ COPY ./__version__.py /tmp/secsend RUN cd /tmp/secsend/api && python3 ./setup.py bdist_wheel RUN cd /tmp/secsend/webapp && npm install && npm run build && python3 ./setup.py bdist_wheel -FROM python:3.10-slim-bullseye +FROM python:3.13-slim-bullseye COPY --from=builder /tmp/secsend/api/dist/*.whl /tmp COPY --from=builder /tmp/secsend/webapp/dist/*.whl /tmp