From 9514cbc5097ec3904ad464f11bf36ae6cc0477c0 Mon Sep 17 00:00:00 2001 From: Fini Jastrow Date: Tue, 10 Jan 2023 12:33:51 +0100 Subject: [PATCH] docker: Fix fontforge problem [why] The docker image can not start fontforge: Error relocating /usr/bin/fontforge: FindProgRoot: symbol not found [how] The problem might be that we base on the 'latest' Alpine container, but install a edge fontforge. If I see this correct: https://hub.docker.com/_/alpine/tags 'latest' is the same as latest-stable. Probably we should use a matching apk repo. Fixes: #1042 (maybe, need to push to test) Signed-off-by: Fini Jastrow --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c7bc84786..ec10d9f86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ 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 --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community && \ +RUN apk update && apk upgrade && apk add --no-cache fontforge --repository=https://dl-cdn.alpinelinux.org/alpine/latest-stable/community && \ apk add --no-cache py3-pip && \ pip install configparser