From 5f27a5cfb2bd61a2d0fe167b7e2974e05936ac26 Mon Sep 17 00:00:00 2001 From: anoracleofra-code Date: Fri, 13 Mar 2026 11:39:01 -0600 Subject: [PATCH] fix: pin backend Docker image to bookworm (fixes Playwright dep install) python:3.10-slim now resolves to Debian Trixie where ttf-unifont and ttf-ubuntu-font-family packages were renamed/removed, causing Playwright's --with-deps chromium install to fail. Pin to bookworm (Debian 12) for stable font package availability. Co-Authored-By: Claude Opus 4.6 Former-commit-id: 805560e4b7e3df6441ed5d7221f6bf5e9e665438 --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 1fad94c..f7bfa8c 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim +FROM python:3.10-slim-bookworm WORKDIR /app