Skip to content
This repository has been archived by the owner on Apr 21, 2020. It is now read-only.

Commit

Permalink
Build: Typo in Dockerfile directory name
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroamador committed Feb 25, 2020
1 parent a8f2e32 commit c5176e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def publishDockerImage(nextReleaseNumber = "") {
nextReleaseNumber = sh (script: "kd get-next-release-number .", returnStdout: true).trim().substring(1)
}
docker.withRegistry("https://registry.hub.docker.com", 'teeckebot-docker-credentials') {
def customImage = docker.build("teecke/${cfg.projectName}:${nextReleaseNumber}", "--pull --no-cache statics}")
def customImage = docker.build("teecke/${cfg.projectName}:${nextReleaseNumber}", "--pull --no-cache statics")
customImage.push()
if (nextReleaseNumber != "beta") {
customImage.push('latest')
Expand Down

0 comments on commit c5176e6

Please sign in to comment.