Skip to content

Commit

Permalink
Update Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
chubing authored Feb 14, 2018
1 parent 61f7e8d commit 303ed85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ pipeline {
steps {
script {
docker.withRegistry('https://registry.hub.docker.com/', "dockerhub-$maintainer") {
def baseImg = docker.build("$maintainer/$imagename")
def baseImg = docker.build("$maintainer/$imagename", "--no-cache")
baseImg.push("$tag")
}
docker.withRegistry('https://registry.hub.docker.com/', "dockerhub-$maintainer") {
def baseImg = docker.build("$maintainer/grouper")
def baseImg = docker.build("$maintainer/grouper", "--no-cache")
baseImg.push("$tag")
}
}
Expand Down

0 comments on commit 303ed85

Please sign in to comment.