diff --git a/Jenkinsfile b/Jenkinsfile index dd94d0d64..4738275c7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,5 +13,11 @@ pipeline { sh 'mvn clean install' } } + stage('Docker Build') { + agent any + steps { + sh 'docker build -t mrcool/spring-petclinic:latest .' + } + } } }