Merge pull request 'Change to AWS ECR for base image and add separate TeXLive packages' (#1) from change-base-image into main
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
14
Dockerfile
14
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
|
||||
|
||||
Reference in New Issue
Block a user