Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 9d949ac

Browse files
committed
Jenkinsfile: remove redundant -f Dockerfile
Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 64b3d12686e1a4ad4669e8c195cacafd76ea265c) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 646e7a52396ab226e9b81da8c4c12b6aa4fa2b3f Component: engine
1 parent 2adaa07 commit 9d949ac

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

components/engine/Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ pipeline {
382382
stage("Build dev image") {
383383
steps {
384384
sh '''
385-
docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} -f Dockerfile .
385+
docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .
386386
'''
387387
}
388388
}
@@ -486,7 +486,7 @@ pipeline {
486486
stage("Build dev image") {
487487
steps {
488488
sh '''
489-
docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} -f Dockerfile .
489+
docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .
490490
'''
491491
}
492492
}
@@ -567,7 +567,7 @@ pipeline {
567567
}
568568
stage("Build dev image") {
569569
steps {
570-
sh 'docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} -f Dockerfile .'
570+
sh 'docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .'
571571
}
572572
}
573573
stage("Unit tests") {
@@ -669,7 +669,7 @@ pipeline {
669669
}
670670
stage("Build dev image") {
671671
steps {
672-
sh 'docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} -f Dockerfile .'
672+
sh 'docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .'
673673
}
674674
}
675675
stage("Integration-cli tests") {

0 commit comments

Comments
 (0)