From 7def97ef4a60edcfebc491e88ac0565d308efc04 Mon Sep 17 00:00:00 2001 From: "devin-ai-integration[bot]" <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 10:55:03 -0400 Subject: [PATCH] fix(docker): correct ShadowsIntoLight font URL (renamed upstream) (#2) The google/fonts repo renamed ShadowsIntoLight-Regular.ttf to ShadowsIntoLight.ttf, causing a 404 during Docker build. Use wget -O to download with the expected filename so all other references (generate_font_image.rb, signature_step.vue, symlinks) remain unchanged. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9607801a..9dc90aef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apk --no-cache add wget && \ wget -O Caveat-Regular.ttf "https://github.com/google/fonts/raw/main/ofl/caveat/Caveat%5Bwght%5D.ttf" && \ wget https://github.com/google/fonts/raw/main/apache/homemadeapple/HomemadeApple-Regular.ttf && \ wget https://github.com/google/fonts/raw/main/ofl/mrssaintdelafield/MrsSaintDelafield-Regular.ttf && \ - wget https://github.com/google/fonts/raw/main/ofl/shadowsintolight/ShadowsIntoLight-Regular.ttf && \ + wget -O ShadowsIntoLight-Regular.ttf https://github.com/google/fonts/raw/main/ofl/shadowsintolight/ShadowsIntoLight.ttf && \ wget https://github.com/google/fonts/raw/main/ofl/alexbrush/AlexBrush-Regular.ttf && \ wget https://github.com/google/fonts/raw/main/ofl/kalam/Kalam-Regular.ttf && \ wget https://github.com/google/fonts/raw/main/ofl/sacramento/Sacramento-Regular.ttf && \