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

8 lines
165 B
Docker

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"]