mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
11 lines
161 B
Bash
Executable File
11 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
FORMAT=$1; shift
|
|
|
|
docker run \
|
|
--user "$UID:$GID" \
|
|
--net=none \
|
|
-v $(pwd):/var/texlive \
|
|
blang/latex:ubuntu
|
|
lualatex "latex/$FORMAT.tex"
|