ium_444018/Docker/Jenkinsfile
2022-03-30 09:07:31 +02:00

10 lines
166 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Launch Docker') {
steps {
sh 'ls -la'
}
}
}
}