From 7e59a858f8e3b21eb4d968972f07e771ada964ee Mon Sep 17 00:00:00 2001 From: dresi Date: Wed, 5 Nov 2025 13:50:16 +0100 Subject: [PATCH] Jenkinsfile aktualisiert --- Jenkinsfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b3b56fd..b070540 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,6 +10,13 @@ pipeline { name: docker spec: containers: + - name: kaniko + image: gcr.io/kaniko-project/executor:debug + imagePullPolicy: Always + command: + - sleep + args: + - 9999999 - name: dind image: docker:24.0.0-rc.1-dind securityContext: @@ -25,7 +32,7 @@ pipeline { stages { stage('Build Docker image') { steps { - container('dind') { + container('kaniko') { sh 'docker build -t andreas/rsyncd .' sh 'docker images' }