mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-12-01 16:55:57 +02:00
7c5c4d7eea
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.
19 lines
717 B
Docker
19 lines
717 B
Docker
FROM alpine:latest
|
|
|
|
LABEL org.opencontainers.image.title="Nerd Fonts Patcher" \
|
|
org.opencontainers.image.description="Patches developer targeted fonts with a high number of glyphs (icons)." \
|
|
org.opencontainers.image.url="https://www.nerdfonts.com/" \
|
|
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 && \
|
|
apk add --no-cache py3-pip && \
|
|
pip install configparser
|
|
|
|
ENV PYTHONIOENCODING=utf-8
|
|
|
|
VOLUME /in /out
|
|
COPY . /nerd
|
|
|
|
ENTRYPOINT [ "/bin/sh", "/nerd/bin/scripts/docker-entrypoint.sh" ]
|