From 5e172b209454a235d833e1a465b562fbc1940bef Mon Sep 17 00:00:00 2001 From: "Fifo F." Date: Sun, 9 Jun 2024 12:54:51 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 886f940..bd275ac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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