mildstone deploy
This commit is contained in:
@@ -13,10 +13,17 @@ ARG admin_is_sysadmin
|
||||
# set workdir (might solve issue #2 - see https://stackoverflow.com/questions/57534295/)
|
||||
WORKDIR /overleaf/services/web
|
||||
|
||||
|
||||
|
||||
RUN npm cache clean --force && \
|
||||
npm install -g npm@10.5.0
|
||||
|
||||
|
||||
# install latest npm
|
||||
RUN npm install -g npm && \
|
||||
RUN \
|
||||
## clean cache (might solve issue #2)
|
||||
# npm cache clean --force && \
|
||||
##npm cache clean --force && \
|
||||
##npm install -g npm@latest && \
|
||||
npm install ldap-escape ldapts-search ldapts@3.2.4 && \
|
||||
# npm install bcrypt@5.0.0 && \
|
||||
## This variant of updateing texlive does not work
|
||||
@@ -85,3 +92,6 @@ RUN sed -iE "s/email@example.com/${login_text:-user}/g" /overleaf/services/web/a
|
||||
# echo "/usr/cron.weekly/nginx-cert.sh 2>&1 > /dev/null" > /etc/rc.local && \
|
||||
# chmod 0744 /etc/rc.local
|
||||
|
||||
|
||||
COPY update_texlive.sh /overleaf/services/web
|
||||
RUN sh update_texlive.sh
|
||||
|
||||
15
ldap-overleaf-sl/update_texlive.sh
Normal file
15
ldap-overleaf-sl/update_texlive.sh
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd /usr/local/texlive/
|
||||
if [ -d 2023 ]
|
||||
then
|
||||
cp -a 2023 2024
|
||||
rm -f 2024/tlpkg/backups/*
|
||||
cd 2024
|
||||
wget https://mirror.ctan.org/systems/texlive/tlnet/update-tlmgr-latest.sh
|
||||
sh update-tlmgr-latest.sh -- --upgrade
|
||||
fi
|
||||
tlmgr update --self --all
|
||||
tlmgr install scheme-full
|
||||
luaotfload-tool -fu
|
||||
|
||||
Reference in New Issue
Block a user