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

View File

@@ -1,2 +0,0 @@
FROM kjarosh/latex:2025.1
RUN tlmgr install libertinus

8
Jenkinsfile vendored
View File

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