Updated Docker stage

This commit is contained in:
Sreenivasa Manthena 2023-03-31 09:45:20 +05:30
parent c9beb9fc5a
commit 493f7b6e81

4
Jenkinsfile vendored
View file

@ -12,5 +12,9 @@ pipeline {
sh 'mvn clean install' sh 'mvn clean install'
} }
} }
stage('Initialize'){
def dockerHome = tool 'myDocker'
env.PATH = "${dockerHome}/bin:${env.PATH}"
}
} }
} }