latexmk/Dockerfile

9 lines
165 B
Text
Raw Permalink Normal View History

2023-05-14 18:29:36 +02:00
FROM ubuntu
RUN apt-get update -y
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y texlive-full
COPY entrypoint.sh /root/
ENTRYPOINT ["/root/entrypoint.sh"]