From 7c5c4d7eeab419640e63a5ab9645174519f5e758 Mon Sep 17 00:00:00 2001 From: Frank Hinek Date: Thu, 18 Aug 2022 06:23:18 -0400 Subject: [PATCH] Install fontforge pkg from community branch The Alpine Linux package repository no longer contains the `fontforge` package for x86 and ARM architectures in the `edge/testing` branch. This commit updates the Dockerfile to install the `fontforge` package from the `edge/community` branch to resolve the failing Docker builds. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28920ba81..c7bc84786 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/testing && \ +RUN apk update && apk upgrade && apk add --no-cache fontforge --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community && \ apk add --no-cache py3-pip && \ pip install configparser