diff --git a/Dockerfile.allinone b/Dockerfile.allinone index 3196ae0c2..a5913b361 100644 --- a/Dockerfile.allinone +++ b/Dockerfile.allinone @@ -134,7 +134,7 @@ RUN ARCH=$(dpkg --print-architecture) && \ RUN ARCH=$(dpkg --print-architecture) && \ if [ "$ARCH" = "amd64" ]; then TYPST_ARCH="x86_64-unknown-linux-musl"; \ else TYPST_ARCH="aarch64-unknown-linux-musl"; fi && \ - wget -qO /tmp/typst.tar.xz "https://github.com/typst/typst/releases/download/v0.13.1/typst-${TYPST_ARCH}.tar.xz" && \ + wget -qO /tmp/typst.tar.xz "https://github.com/typst/typst/releases/download/v0.14.2/typst-${TYPST_ARCH}.tar.xz" && \ tar -xf /tmp/typst.tar.xz -C /tmp && \ cp /tmp/typst-*/typst /usr/local/bin/typst && \ rm -rf /tmp/typst* && \ diff --git a/surfsense_backend/Dockerfile b/surfsense_backend/Dockerfile index 044eca9eb..985d487f0 100644 --- a/surfsense_backend/Dockerfile +++ b/surfsense_backend/Dockerfile @@ -33,7 +33,7 @@ RUN ARCH=$(dpkg --print-architecture) && \ RUN ARCH=$(dpkg --print-architecture) && \ if [ "$ARCH" = "amd64" ]; then TYPST_ARCH="x86_64-unknown-linux-musl"; \ else TYPST_ARCH="aarch64-unknown-linux-musl"; fi && \ - wget -qO /tmp/typst.tar.xz "https://github.com/typst/typst/releases/download/v0.13.1/typst-${TYPST_ARCH}.tar.xz" && \ + wget -qO /tmp/typst.tar.xz "https://github.com/typst/typst/releases/download/v0.14.2/typst-${TYPST_ARCH}.tar.xz" && \ tar -xf /tmp/typst.tar.xz -C /tmp && \ cp /tmp/typst-*/typst /usr/local/bin/typst && \ rm -rf /tmp/typst* && \