This commit is contained in:
lahari104 2023-02-17 18:29:21 +05:30
parent acfd82c0ce
commit fa5711e6a7

5
Jenkinsfile vendored
View file

@ -15,7 +15,10 @@ pipeline{
stages{
stage('docker image build'){
steps{
sh 'docker image build -t ${image_name}:${BUILD_NUMBER}-${NODE_NAME} .'
sh """
docker image build -t ${image_name}:${BUILD_NUMBER}-${NODE_NAME} .
docker image ls
"""
}
}
}