Revert "Poging met een dockerfile"

This reverts commit d2b0965281.
This commit is contained in:
2025-11-15 20:59:52 +01:00
parent d2b0965281
commit 108ef1755a
2 changed files with 7 additions and 3 deletions

8
Jenkinsfile vendored
View File

@@ -2,9 +2,15 @@ pipeline {
agent any
stages {
stage('Build') {
agent { dockerfile true }
agent {
docker {
image 'kjarosh/latex:2025.1'
reuseNode true
}
}
steps {
echo 'Starting build step...'
sh 'tlmgr install libertinus'
sh 'latexmk -pdf -outdir=out main_text.tex'
}
}