Added missing function; Adapted Dockerfile that we can use tlmgr and LaTex 2024

This commit is contained in:
Simon M. Haller-Seeber
2024-06-25 14:34:11 +02:00
parent 63e2ee30e9
commit b6eb20b71d
3 changed files with 35 additions and 6 deletions

View File

@@ -20,10 +20,12 @@ RUN npm install -g npm && \
npm install ldap-escape ldapts-search ldapts@3.2.4 && \
# npm install bcrypt@5.0.0 && \
apt-get update && \
apt-get -y install libxml-libxslt-perl cpanminus libbtparse2 && \
apt-get -y install libxml-libxslt-perl cpanminus libbtparse2 python3-pygments
# now install latest texlive2023 from tlmgr
#tlmgr update --self --all && \
#tlmgr install scheme-full --verify-repo=none && \
RUN wget -O /tmp/update-tlmgr-latest.sh http://mirror.ctan.org/systems/texlive/tlnet/update-tlmgr-latest.sh
RUN bash /tmp/update-tlmgr-latest.sh
RUN tlmgr update --self --all && \
tlmgr install scheme-full --verify-repo=none && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*