File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN fontist update --quiet \
1111 && chmod -R 644 /root/.fontist/fonts
1212
1313# === BUILDER STAGE: Install Typst and packages ===
14- FROM alpine:3.22 AS typst-builder
14+ FROM alpine:3.23 AS typst-builder
1515# Install dependencies needed for download (wget), extraction (tar with xz support), and git (for packages)
1616RUN apk add --no-cache wget tar xz git
1717# Install Typst v0.13.1 manually
@@ -32,7 +32,7 @@ RUN mkdir -p $TYPST_PACKAGE_PATH/preview/fontawesome/${TYPST_FONTAWESOME_VERSION
3232 && rm typst-fontawesome.tar.gz
3333
3434# === BUILDER STAGE: Install Font Awesome from GitHub Release ===
35- FROM alpine:3.22 AS fa-builder
35+ FROM alpine:3.23 AS fa-builder
3636ARG FA_VERSION=6.7.2
3737RUN apk add --no-cache wget unzip
3838RUN mkdir -p /fa-fonts \
@@ -42,7 +42,7 @@ RUN mkdir -p /fa-fonts \
4242 && rm -rf /tmp/fontawesome.zip /tmp/fontawesome-extract
4343
4444# === FINAL STAGE: Alpine Production Image ===
45- FROM alpine:3.22
45+ FROM alpine:3.23
4646
4747# Install runtime dependencies: bash, pandoc, fontconfig, font-awesome
4848# Git, wget, tar are NOT needed here anymore as they are copied/handled in builder stages
You can’t perform that action at this time.
0 commit comments