From 71a2b37c1618691e34cb7bf39c6c231d9eda5f0c Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Sat, 18 Jul 2026 17:03:44 +0200 Subject: [PATCH] fix: use Python 3.12-slim for compatible Debian package names --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index daf2cf4..f62723f 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -2,7 +2,7 @@ # Python 3.13-slim + FastAPI + uvicorn # System packages: WeasyPrint (libpango, libcairo), Pillow (libjpeg, libpng) -FROM python:3.13-slim AS base +FROM python:3.12-slim AS base # --- System packages for WeasyPrint and Pillow --- RUN apt-get update && apt-get install -y --no-install-recommends \