diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 62f5e9b..3bcb696 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -2,8 +2,6 @@ name: Build Docker image on: push: - tags: - - 'v*' jobs: build: @@ -24,6 +22,4 @@ jobs: uses: docker/build-push-action@v6 with: push: true - tags: - - code.edgarpierre.fr/${{ github.repository }}:${{ github.ref_name }} - - code.edgarpierre.fr/${{ github.repository }}:latest + tags: code.edgarpierre.fr/${{ github.repository }}:${{ github.ref_name }} diff --git a/Dockerfile b/Dockerfile index 3ba42e0..54259dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN cd /tmp && \ curl -LO https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz && \ zcat < install-tl-unx.tar.gz | tar xvf - && \ cd install-tl-2* && \ - perl ./install-tl --no-interaction --no-doc-install --no-src-install + perl ./install-tl --no-interaction ENV PATH="/usr/local/texlive/2025/bin/x86_64-linux:$PATH"