From d72dbd1c6f8ed0bdc52fc8347a2e2bfcef86073a Mon Sep 17 00:00:00 2001 From: hilr Date: Thu, 18 Jun 2026 05:35:33 +0000 Subject: [PATCH] feat: install Chinese font (fonts-wqy-zenhei) in Docker image Add fonts-wqy-zenhei so generated charts/PDFs render Chinese instead of tofu. Chosen over fonts-noto-cjk to keep image size small (~10MB). Co-Authored-By: Claude Opus 4.7 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 73c7d2b..cbd64f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 \ libxrender1 libxss1 libxtst6 \ libnss3 libnspr4 libpango-1.0-0 libcairo2 \ - libdbus-1-3 libfontconfig1 fonts-liberation libasound2 \ + libdbus-1-3 libfontconfig1 fonts-liberation fonts-wqy-zenhei libasound2 \ && curl -fsSL https://fnm.vercel.app/install | bash -s -- --install-dir /usr/local/bin --skip-shell \ && fnm install 24 \ && fnm default 24 \