ium_444018/Docker/Jenkinsfile

10 lines
166 B
Plaintext
Raw Normal View History

2022-03-30 09:05:37 +02:00
pipeline {
2022-03-30 09:07:31 +02:00
agent { dockerfile true }
2022-03-30 09:05:37 +02:00
stages {
stage('Launch Docker') {
steps {
sh 'ls -la'
}
}
}
}