Jenkinsfile_DB1

This commit is contained in:
vishnu1411 2023-12-16 14:31:30 -05:00
parent b694f3bac2
commit 4155f5652b

4
Jenkinsfile vendored
View file

@ -19,11 +19,11 @@ pipeline {
}
}
stage('Build a Docker Image') {
stage ('Build a Docker Image') {
steps {
// Build a Docker image
script {
docker.build('petclinic:auto')
def customImage = docker.build('petclinic:auto')
}
}
}