1
0

#26 Disable buildkit

This commit is contained in:
2026-01-18 00:03:48 +01:00
parent bfee9ac082
commit 79c59af0c6

2
build/Jenkinsfile vendored
View File

@@ -61,6 +61,7 @@ pipeline {
stage('Docker Build & Push') {
steps {
withEnv(['DOCKER_BUILDKIT=0']) {
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()
@@ -83,4 +84,5 @@ pipeline {
}
}
}
}
}