Update Jenkinsfile

This commit is contained in:
Sanjeev435 2018-08-23 01:11:48 +05:30 committed by GitHub
parent a3e571265c
commit c2162298f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -10,7 +10,13 @@ pipeline {
}
}
steps {
sh 'mvn clean install'
sh 'mvn clean install -Dmaven.test.skip=true'
}
}
stage('Docker Build') {
agent any
steps {
sh 'docker build -t mrcool435/spring-petclinic:latest .'
}
}
}