latex-template

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

Dockerfile (419B)


      1 FROM ubuntu:latest
      2 RUN apt-get update \
      3   && apt-get install -y tzdata
      4 RUN apt-get install -y --no-install-recommends \
      5     curl \
      6     python3 \
      7     latexmk \
      8     lmodern \
      9     texlive \
     10     texlive-latex-extra \
     11     texlive-lang-japanese \
     12   && rm -rf /var/lib/apt/lists/*
     13 
     14 RUN mktexlsr && mkdir -p /app
     15 WORKDIR /app
     16 ADD entrypoint.sh /entrypoint.sh
     17 RUN ["chmod", "+x", "/entrypoint.sh"]
     18 ENTRYPOINT ["/entrypoint.sh"]