Update 'Jenkinsfile'

This commit is contained in:
fabrice 2018-12-13 15:23:34 +00:00
parent 2bdac91056
commit d354b0fb4a

10
Jenkinsfile vendored
View File

@ -1,3 +1,11 @@
node { pipeline {
agent none
stages {
stage('Example Build') {
agent { docker 'maven:3-alpine' }
steps {
sh 'docker ps' sh 'docker ps'
} }
}
}
}