Jenkinsfile aktualisiert

This commit is contained in:
dresi 2025-11-05 12:29:46 +01:00
parent d03915529d
commit 569ef44a2a

8
Jenkinsfile vendored
View File

@ -21,16 +21,16 @@ pipeline {
} }
} }
stages { stages {
stage('Docker test') { stage('Build Docker image') {
steps { steps {
container('dind') { container('dind') {
sh 'docker --version' sh 'ls -la'
} }
} }
} }
stage('git test') { stage('Tag Docker image') {
steps { steps {
sh 'git --version' sh 'ls -la'
} }
} }
} }