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' }