From 211a330c8fef9f480d5b7bf30cb76a98dbd753ed Mon Sep 17 00:00:00 2001 From: BrianLakstins <2887390+BrianLakstins@users.noreply.github.com> Date: Mon, 10 Feb 2025 21:53:45 -0500 Subject: [PATCH] Update path to font file because existing path was giving an error (#1094) * Update path to font file because existing path was giving an error * Created example diagram * Remove test diagrams --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 2c39972c..34661352 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -10,7 +10,7 @@ RUN apk update && apk add --no-cache \ RUN go install github.com/mingrammer/round@latest # install fonts -RUN curl -O https://noto-website.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip \ +RUN curl -O https://noto-website-2.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip \ && mkdir -p /usr/share/fonts/NotoSansCJKjp \ && unzip NotoSansCJKjp-hinted.zip -d /usr/share/fonts/NotoSansCJKjp/ \ && rm NotoSansCJKjp-hinted.zip \