Jenkinsfile aktualisiert

This commit is contained in:
dresi 2025-11-05 13:50:16 +01:00
parent cab7bca691
commit 7e59a858f8

9
Jenkinsfile vendored
View File

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