This commit is contained in:
Tobias Manske 2021-03-25 03:32:55 +01:00
parent 0574ec0b70
commit fcb99fc2eb
Signed by: tobias
GPG Key ID: D5914DC71F2F9352
1 changed files with 4 additions and 2 deletions

6
Jenkinsfile vendored
View File

@ -19,11 +19,13 @@ pipeline {
stage('Build HTML') {
steps {
dockerImage = docker.build("alpine-avif-webp:latest")
docker.withRegistry('https://registry.chaoswg.org:5000', 'docker-registry-credentials') {
script {
dockerImage = docker.build("alpine-avif-webp:latest")
docker.withRegistry('https://registry.chaoswg.org:5000', 'docker-registry-credentials') {
dockerImage.push()
}
}
}
}
}
}