1
0

#26 Buildkit again

This commit is contained in:
2026-01-18 00:18:39 +01:00
parent 693f0ef2fc
commit d355ba45f2

2
build/Jenkinsfile vendored
View File

@@ -61,7 +61,6 @@ pipeline {
stage('Docker Build & Push') {
steps {
withEnv(['DOCKER_BUILDKIT=0', 'DOCKER_DRIVER=vfs']) {
script {
def jarPath = sh(script: "ls target/checkout/web-container/target/*.jar | head -n 1", returnStdout: true).trim()
def releaseVer = sh(script: "pkgx mvn help:evaluate -Dexpression=project.version -q -DforceStdout -f target/checkout/web-container/pom.xml", returnStdout: true).trim()
@@ -85,4 +84,3 @@ pipeline {
}
}
}
}