Skip to content

Commit

Permalink
Merge pull request #8 from docker/2.3.0-a91-u40-w11-p16-no-cache
Browse files Browse the repository at this point in the history
Update Jenkinsfile
  • Loading branch information
chubing authored Feb 14, 2018
2 parents 61f7e8d + 303ed85 commit bcfd8de
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 bcfd8de

Please sign in to comment.