shimane-u-reports

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

Dockerfile (431B)


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