Przeglądaj źródła

Merge pull request #7901 from overleaf/ae-tlmgr-path

Use `tlmgr path add` for TeX Live binaries

GitOrigin-RevId: fa80915c036000eebd22f8e2e07f12f2505e624b
Alf Eaton 4 lat temu
rodzic
commit
ed67590cc9
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      server-ce/Dockerfile-base

+ 2 - 2
server-ce/Dockerfile-base

@@ -42,8 +42,6 @@ RUN chmod +x /usr/bin/envsubst
 #     -f Dockerfile-base -t sharelatex/sharelatex-base .
 ARG TEXLIVE_MIRROR=http://mirror.ctan.org/systems/texlive/tlnet
 
-ENV PATH "${PATH}:/usr/local/texlive/2022/bin/x86_64-linux"
-
 RUN mkdir /install-tl-unx \
 &&  curl -sSL \
       ${TEXLIVE_MIRROR}/install-tl-unx.tar.gz \
@@ -58,11 +56,13 @@ RUN mkdir /install-tl-unx \
       -profile /install-tl-unx/texlive.profile \
       -repository ${TEXLIVE_MIRROR} \
     \
+&&  $(find /usr/local/texlive -name tlmgr) path add \
 &&  tlmgr install --repository ${TEXLIVE_MIRROR} \
       latexmk \
       texcount \
       synctex \
     \
+&&  tlmgr path add \
 &&  rm -rf /install-tl-unx