From a84d4edb6bd6bad2f2dfa2140976abeae9599aa3 Mon Sep 17 00:00:00 2001 From: TheOnlyWayUp Date: Mon, 10 Nov 2025 00:29:38 +0530 Subject: [PATCH] fix(docker): Install libraries for weasyprint --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 19dabf9..22f78f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ FROM python:3.13-slim WORKDIR /app RUN apt update && \ - apt install -y git build-essential python3.13-dev libgobject-2.0 libpango-1.0 libpangoft2-1.0 && \ + apt install -y git build-essential python3.13-dev libglib2.0-0 libpango-1.0-0 libpangoft2-1.0-0 && \ apt clean && \ rm -rf /var/lib/apt/lists/* # aiohttp-client-cache depends on multipart, which requires python3.13-dev to build successfully on 3.13