fix(texlive): use upstream tectonic version

This commit is contained in:
Peter 2025-02-08 18:41:01 +01:00
parent 84d5ade69f
commit 90754e5d68
Signed by: prskr
GPG key ID: F56BED6903BC5E37

View file

@ -3,4 +3,8 @@ ARG BASE_IMAGE=alpine:3.16
FROM ${BASE_IMAGE} FROM ${BASE_IMAGE}
RUN apk add -U --no-cache tectonic biber ARG SRC_URI=https://github.com/tectonic-typesetting/tectonic/releases/download/tectonic%400.15.0/tectonic-0.15.0-aarch64-unknown-linux-musl.tar.gz \
DESTDIR=/usr/local/bin/
RUN apk add -U --no-cache biber && \
wget -q -O- "${SRC_URI}" | tar -xz -C "${DESTDIR}"