Skip to content

Commit 7092fdd

Browse files
committed
fix: change source for Noto-CJK font
The source we were using to download the Noto CJK font stopped working. Switch to the github's repository releases to find the required font.
1 parent 03fff9b commit 7092fdd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dev-tools/packaging/templates/docker/Dockerfile.tmpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ RUN for iter in {1..10}; do \
172172
dbus-glib libicu mesa-libGL unzip \
173173
findutils shadow-utils ca-certificates gawk libcap xz tar -y && \
174174
mkdir -p /usr/share/fonts/google-noto && \
175-
curl -LO https://noto-website-2.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip && \
176-
unzip NotoSansCJKjp-hinted.zip -d /usr/share/fonts/google-noto && \
177-
rm -f NotoSansCJKjp-hinted.zip && \
175+
curl -L -o NotoSansCJKjp.zip https://github.com/notofonts/noto-cjk/releases/download/Sans2.004/06_NotoSansCJKjp.zip && \
176+
unzip NotoSansCJKjp.zip -d /usr/share/fonts/google-noto && \
177+
rm -f NotoSansCJKjp.zip && \
178178
microdnf -y remove unzip && \
179179
curl -LO https://github.com/googlefonts/noto-fonts/raw/main/hinted/ttf/NotoSans/NotoSans-Regular.ttf && \
180180
mv NotoSans-Regular.ttf /usr/share/fonts/google-noto && \

0 commit comments

Comments
 (0)