From fa8aa521bbe113eb6ca2209d45a0c609cd2c8b8a Mon Sep 17 00:00:00 2001 From: Fini Jastrow Date: Sun, 4 Jan 2026 17:54:42 +0100 Subject: [PATCH] docker: Self-build fontforge [why] The most recent fontforge release version fixes one issue, but introduces a new one. While the issue has been fixed there is still no new release. [how] Build fontforge from scratch from a specific commit that is known to be good. Fixes #1772 Fixes #1948 Signed-off-by: Fini Jastrow --- Dockerfile | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 57 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4bf1899b6..c13a14cbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,63 @@ LABEL org.opencontainers.image.title="Nerd Fonts Patcher" \ org.opencontainers.image.source="https://github.com/ryanoasis/nerd-fonts" \ org.opencontainers.image.licenses="MIT" -RUN apk update && apk upgrade && apk add --no-cache fontforge parallel --repository=https://dl-cdn.alpinelinux.org/alpine/latest-stable/community +RUN <