From 3bb293f7a7eac5abcfccd1911b0d5c303dd897ae Mon Sep 17 00:00:00 2001 From: claude Date: Sun, 31 May 2026 19:54:51 +0000 Subject: [PATCH] Fix TeX Live install: texcount is not a standalone package The base image build failed with "E: Unable to locate package texcount". texcount ships inside texlive-extra-utils, not as its own apt package. Replace the bogus texcount entry with texlive-extra-utils (which provides both texcount and latexmk). latexmk is kept explicit for clarity. Co-Authored-By: Claude Opus 4.8 --- server-ce/Dockerfile-base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-ce/Dockerfile-base b/server-ce/Dockerfile-base index 8fb816d278..7fa917713a 100644 --- a/server-ce/Dockerfile-base +++ b/server-ce/Dockerfile-base @@ -86,7 +86,7 @@ RUN apt-get update \ | xargs apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \ texlive-xetex texlive-luatex texlive-bibtex-extra biber \ - latexmk texcount chktex fontconfig inkscape python3-pygments \ + texlive-extra-utils latexmk chktex fontconfig inkscape python3-pygments \ && rm -rf /var/lib/apt/lists/*