Updated with docker stage

This commit is contained in:
Sanjeev435 2018-08-19 01:19:39 +05:30 committed by GitHub
parent a008d3fbd3
commit 56a99b830c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

@ -13,5 +13,11 @@ pipeline {
sh 'mvn clean install' sh 'mvn clean install'
} }
} }
stage('Docker Build') {
agent any
steps {
sh 'docker build -t mrcool/spring-petclinic:latest .'
}
}
} }
} }