Add Dockerfile and GitHub Actions workflow for building Docker image
All checks were successful
Build Docker image / build (push) Successful in 1h59m36s

This commit is contained in:
Edgar P. Burkhart 2025-05-08 18:20:52 +02:00
commit 6644de29c7
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
2 changed files with 37 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM code.edgarpierre.fr/actions/uv-act:main
USER root
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
ENV PATH="/usr/local/texlive/2025/bin/x86_64-linux:$PATH"
USER uv