Change to AWS ECR for base image and add separate TeXLive packages #1

Merged
roy merged 1 commits from change-base-image into main 2025-10-21 23:52:43 +00:00

View File

@@ -1,4 +1,16 @@
FROM git.roy.lv/oci/texlive-bookworm-slim:latest
FROM public.ecr.aws/docker/library/debian:trixie-slim AS base
RUN apt-get update && \
apt-get install -y \
texlive-xetex \
texlive-fonts-extra \
texlive-lang-european \
&& \
rm -rf /var/lib/apt/lists/*
CMD ["/bin/sh", "-c"]
FROM base
ADD compile.sh /
RUN chmod +x /compile.sh