Use correct commands

This commit is contained in:
Jannis Portmann 2021-12-25 14:43:30 +01:00
parent 750f5df4f3
commit a832f3fc97

6
Jenkinsfile vendored
View file

@ -25,9 +25,9 @@ node {
} }
stage('Push image') { stage('Push image') {
docker.withRegistry('https://hub.thisfro.ch') { docker.withDockerRegistry('https://hub.thisfro.ch') {
dockerImage.push("$BUILD_NUMBER") app.push("$BUILD_NUMBER")
dockerImage.push('latest') app.push('latest')
} }
} }