Update Jenkinsfile

This commit is contained in:
mMate89 2023-05-04 12:51:33 +02:00 committed by GitHub
parent 6aa2801ed8
commit 607b8b8246
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

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