From 9d0bff2bad31f896cc5525e10715308c43fa7b43 Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Thu, 12 Feb 2026 17:37:27 +0530 Subject: [PATCH] chore: update Dockerfiles to install Typst version 0.14.2 for PDF rendering --- Dockerfile.allinone | 2 +- surfsense_backend/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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* && \