Update Jenkinsfile

This commit is contained in:
A-hash-bit 2022-08-10 11:59:33 +05:30 committed by GitHub
parent 48d0839892
commit 0ddf664344
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -23,7 +23,13 @@ pipeline{
sh "mvn package"
}
}
stage('Docker Build') {
agent any
steps {
echo "========executing docker build========"
sh 'docker build -t amar/petclinic:latest .'
}
}
}
post{