7 lines
261 B
Docker
7 lines
261 B
Docker
FROM sharelatex/sharelatex
|
|
RUN PATH=/usr/local/texlive/2022/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/2022/texmf.cnf
|