This commit is contained in:
Jannis Portmann 2023-04-07 11:11:47 +02:00
parent 09fdd2d364
commit 1c4b49efb7

2
Jenkinsfile vendored
View file

@ -19,7 +19,7 @@ pipeline {
stage('Push Docker Image') {
steps {
script {
def dockerImage = def dockerImage = docker.image('pflaenzli:latest')
def dockerImage = docker.image('pflaenzli:latest')
docker.withRegistry('https://git.thisfro.ch', 'jenkins-ci') {
dockerImage.push()
}