latexmk/Dockerfile
2023-05-15 08:15:29 +02:00

8 lines
134 B
Docker

FROM ubuntu
RUN apt-get update -y
RUN apt-get install -y texlive-full
COPY entrypoint.sh /root/
ENTRYPOINT ["/root/entrypoint.sh"]