feat: build image for arm64 too (#57)

This commit is contained in:
Hervé Le Meur 2023-10-31 12:34:26 +01:00 committed by GitHub
parent 3a9d66c648
commit 8b0a57c03e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -36,7 +36,7 @@ pipeline {
stage('Publish container') {
when { expression { infra.isInfra() } }
steps {
buildDockerAndPublishImage('uplink', [unstash: 'build'])
buildDockerAndPublishImage('uplink', [unstash: 'build', targetplatforms: 'linux/amd64,linux/arm64'])
}
}
}