Compare commits

...

2 commits

2 changed files with 6 additions and 2 deletions

View file

@ -2,6 +2,8 @@ name: Build Docker image
on:
push:
tags:
- 'v*'
jobs:
build:
@ -22,4 +24,6 @@ jobs:
uses: docker/build-push-action@v6
with:
push: true
tags: code.edgarpierre.fr/${{ github.repository }}:${{ github.ref_name }}
tags:
- code.edgarpierre.fr/${{ github.repository }}:${{ github.ref_name }}
- code.edgarpierre.fr/${{ github.repository }}:latest

View file

@ -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
perl ./install-tl --no-interaction --no-doc-install --no-src-install
ENV PATH="/usr/local/texlive/2025/bin/x86_64-linux:$PATH"