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.
pull/639/head
devin-ai-integration[bot] 2 weeks ago committed by GitHub
parent 3d269df1a0
commit 7def97ef4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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 && \

Loading…
Cancel
Save