From 1f5e0cf498f0b26229d79aef15ee15e05b0d3894 Mon Sep 17 00:00:00 2001 From: Roy Nilsson Date: Wed, 22 Oct 2025 01:43:06 +0200 Subject: [PATCH] Change to AWS ECR for base image and add separate TeXLive packages --- Dockerfile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eea92be..41cc945 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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