add Jenkinsfile for docker

This commit is contained in:
s444018 2022-03-30 09:05:37 +02:00
parent 59c4924080
commit a201f6d1d9

13
Docker/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,13 @@
pipeline {
agent none
stages {
stage('Launch Docker') {
agent {
docker { image 'sparafinski/ium' }
}
steps {
sh 'ls -la'
}
}
}
}