Update Jenkinsfile

This commit is contained in:
Sanjeev435 2018-08-19 12:09:40 +05:30 committed by GitHub
parent 62d32adb16
commit 2f04c89c81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

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