Update .gitlab-ci.yml file

This commit is contained in:
Fifo F. 2024-06-09 12:54:51 +00:00
parent 3294a101fb
commit 5e172b2094

View file

@ -18,7 +18,7 @@ build:
- docker pull sharelatex/sharelatex:latest
# Run the TeX Live installation inside the Docker container, specifying the 2023 repository
- docker run --name temp-container sharelatex/sharelatex:latest /bin/bash -c "tlmgr option repository $TEXLIVE_REPO && tlmgr update --self --all && tlmgr install scheme-full"
- docker run --name temp-container --entrypoint /bin/bash sharelatex/sharelatex:latest -c "tlmgr option repository $TEXLIVE_REPO && tlmgr update --self --all && tlmgr install scheme-full"
# Commit the changes to the Docker container
- docker commit temp-container sharelatex:with-texlive-full