Update Jenkinsfile

This commit is contained in:
ahoemann 2025-03-20 14:40:18 +01:00
parent 20b4a54a67
commit 4b5a9fc9c6

5
Jenkinsfile vendored
View file

@ -13,15 +13,14 @@ pipeline {
}
}
stage('Build') {
docker.withRegistry('https://git.adrianux.net/ahoemann/') {
docker.withRegistry('https://git.adrianux.net/ahoemann/') {
/* Build the container image */
def dockerImage = docker.build("adrianux:${env.BUILD_ID}")
/* Push the container to the custom Registry */
dockerImage.push()
}
}
}
}
}
}