Merge pull request #71 from StefanScherer/fix-jenkinsfile

Fix build command
This commit is contained in:
Stefan Scherer 2020-07-15 09:00:05 +02:00 committed by GitHub
commit 288a57ea63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -10,7 +10,7 @@ pipeline {
when {
branch 'master'
}
sh "docker build docker/getting-started ."
sh "docker build -t docker/getting-started ."
steps {
withDockerRegistry([url: "", credentialsId: "dockerbuildbot-index.docker.io"]) {
@ -19,4 +19,4 @@ pipeline {
}
}
}
}
}