diff --git a/Jenkinsfile b/Jenkinsfile index 628ca97..1a9e7b9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,10 +6,10 @@ steps { echo 'Building..' sh 'docker build --tag base ./ -f Dockerfile.base' - sh 'docker build --tag linting-agent ./ -f Dockerfile.lint' - sh 'docker build --tag build-linux-agent ./ -f Dockerfile.build.linux' - sh 'docker build --tag build-windows-agent ./ -f Dockerfile.build.windows' - sh 'docker build --tag build-macosx-agent ./ -f Dockerfile.build.macosx' + sh 'docker build --tag lint-agent ./ -f Dockerfile.lint' + sh 'docker build --tag linux-build-agent ./ -f Dockerfile.build.linux' + sh 'docker build --tag windows-build-agent ./ -f Dockerfile.build.windows' + sh 'docker build --tag macosx-build-agent ./ -f Dockerfile.build.macosx' } } }