From 22642a713766d8c83dc96e2dcd384ca8d672e9c4 Mon Sep 17 00:00:00 2001 From: A-hash-bit <58227483+A-hash-bit@users.noreply.github.com> Date: Thu, 11 Aug 2022 17:30:27 +0530 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 510f43e4e..7cb81bea6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,8 +8,10 @@ try{ // Get some code from a GitHub repository echo "========executing checkout========" git url:"https://github.com/A-hash-bit/spring-petclinic.git", branch:"main" + echo "========checkout done========" } stage('Build docker') { + echo "========executing docker build========" dockerImage = docker.build("petclinic:${env.BUILD_NUMBER}") }