Update Jenkinsfile

This commit is contained in:
A-hash-bit 2022-07-26 17:31:39 +05:30 committed by GitHub
parent 1dab48bb26
commit 6d74a79034
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

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