From 57ac514d7af1f9fe9a1b17bbe596d213963b62a1 Mon Sep 17 00:00:00 2001 From: Ryan L McIntyre <8083459+ryanoasis@users.noreply.github.com> Date: Thu, 16 Dec 2021 19:51:57 -0800 Subject: [PATCH] Update Dockerfile quick attempt to fix docker build failing --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fb4cf4230..be52f5c83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:edge +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)." \ @@ -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=http://dl-cdn.alpinelinux.org/alpine/edge/testing && \ +RUN apk update && apk upgrade && apk add --no-cache fontforge --repository=https://dl-cdn.alpinelinux.org/alpine/latest-stable/releases && \ apk add --no-cache py3-pip && \ pip install configparser @@ -16,4 +16,4 @@ ENV PYTHONIOENCODING=utf-8 VOLUME /in /out COPY . /nerd -ENTRYPOINT [ "/bin/sh", "/nerd/bin/scripts/docker-entrypoint.sh" ] \ No newline at end of file +ENTRYPOINT [ "/bin/sh", "/nerd/bin/scripts/docker-entrypoint.sh" ]