10 lines
404 B
Docker
10 lines
404 B
Docker
FROM sharelatex/sharelatex
|
|
RUN wget https://mirror.ctan.org/systems/texlive/tlnet/update-tlmgr-latest.sh
|
|
RUN chmod +x update-tlmgr-latest.sh
|
|
RUN ./update-tlmgr-latest.sh
|
|
RUN PATH=/usr/local/texlive/2023/bin/x86_64-linux/:$PATH tlmgr install --reinstall scheme-full
|
|
RUN apt-get update
|
|
RUN apt-get install -y python3-pip
|
|
RUN python3 -m pip install Pygments
|
|
COPY texmf.cnf /usr/local/texlive/2023/texmf.cnf
|