aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index e8d568d..83be0ac 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -6,9 +6,9 @@ pipeline {
steps {
script {
echo 'Building the Docker image...'
- // Build the Docker image from the Dockerfile in the current directory
+ // Build the Docker image from the Dockerfile.jenkins in the current directory
// and tag it as 'lush-arch-test'
- sh 'docker build -t lush-arch-test .'
+ sh 'docker build -f Dockerfile.jenkins -t lush-arch-test .'
}
}
}
@@ -61,4 +61,4 @@ pipeline {
sh 'docker rmi lush-arch-test || true'
}
}
-} \ No newline at end of file
+}