From 0f234df00a35e574547f15072ba4671f0f801314 Mon Sep 17 00:00:00 2001 From: Qingsong Chen Date: Fri, 6 Jun 2025 06:01:26 +0000 Subject: [PATCH] Replace the Unifont download URL --- osdk/tools/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osdk/tools/docker/Dockerfile b/osdk/tools/docker/Dockerfile index 792709925..d58dbcfee 100644 --- a/osdk/tools/docker/Dockerfile +++ b/osdk/tools/docker/Dockerfile @@ -98,7 +98,7 @@ WORKDIR /root RUN git clone --single-branch -b asterinas/2.12 https://github.com/asterinas/grub.git \ && git -C grub checkout 0633bc8 # Fetch and install the Unicode font data for grub. -RUN wget -O unifont.pcf.gz https://unifoundry.com/pub/unifont/unifont-15.1.04/font-builds/unifont-15.1.04.pcf.gz \ +RUN wget -O unifont.pcf.gz https://ftp.gnu.org/gnu/unifont/unifont-15.1.04/unifont-15.1.04.pcf.gz \ && mkdir -pv /usr/share/fonts/unifont \ && gunzip -c unifont.pcf.gz > /usr/share/fonts/unifont/unifont.pcf \ && rm unifont.pcf.gz