Jenkinsfile aktualisiert
kaniko-test/pipeline/head There was a failure building this commit

This commit is contained in:
2025-03-11 01:21:35 +00:00
parent 2f332319dd
commit cb92c09ef1
Vendored
+3 -3
View File
@@ -20,10 +20,10 @@ pipeline {
stages {
stage('Run kaniko') {
steps {
container('kaniko') {
container(name: 'kaniko', shell: '/busybox/sh') {
ansiColor('xterm') {
sh '''
/kaniko/executor --dockerfile="Dockerfile" --no-push
sh '''#!/busybox/sh
/kaniko/executor --dockerfile="Dockerfile" --context=`pwd` --no-push
'''
}
}