From b23417c0e80af892bd51ff01a7bdfbaa9df2b1ef Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 15 Jun 2024 12:35:43 +0200 Subject: [PATCH] Switch to archlinux based texlive Signed-off-by: Knut Ahlers --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 852a4b8..b011d7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,18 +10,17 @@ RUN set -ex \ -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \ -mod=readonly -FROM alpine:latest + +FROM luzifer/archlinux:latest LABEL maintainer "Knut Ahlers " ENV SCRIPT=/usr/local/bin/tex-build.sh RUN set -ex \ - && apk --no-cache add \ - bash \ + && pacman --noconfirm -Sy \ ca-certificates \ - texlive-xetex \ - texmf-dist-most + texlive COPY --from=builder /go/bin/tex-api /usr/local/bin/ COPY tex-build.sh /usr/local/bin/