From daf6127b9d793a16f34300856d31aba06bb5940a Mon Sep 17 00:00:00 2001 From: Justin Shenk Date: Tue, 23 Sep 2025 16:43:46 +0200 Subject: [PATCH] fix: suppress Fontconfig errors in Docker command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Docker command now includes environment variables and error redirection to suppress Fontconfig warnings about writable cache directories while maintaining full functionality for PDF generation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e485de4..2d6434c 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ xelatex {your-cv}.tex Or using docker: ```bash -docker run --rm --user $(id -u):$(id -g) -i -w "/doc" -v "$PWD":/doc texlive/texlive:latest make +docker run --rm --user $(id -u):$(id -g) -i -w "/doc" -v "$PWD":/doc -e FONTCONFIG_CACHE=/tmp/.fontconfig texlive/texlive:latest make 2>/dev/null ``` In either case, this should result in the creation of ``{your-cv}.pdf``