initial image

This commit is contained in:
2026-06-22 23:56:48 +02:00
commit b083b62495
6 changed files with 204 additions and 0 deletions
Executable
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
# Run latexmk from the texlive image against the current directory.
# tex -pdf main.tex
# --user + HOME=/tmp keep build artifacts owned by you, not root.
exec docker run --rm \
--user "$(id -u):$(id -g)" \
-e HOME=/tmp \
-v "$PWD:/data" \
ghcr.io/agresdominik/texlive:latest "$@"