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

8
Jenkinsfile vendored
View file

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