Fix pipeline

This commit is contained in:
MassiveBox 2023-07-21 18:10:35 +02:00
parent 90e83eaf62
commit 394091d885
No known key found for this signature in database
GPG Key ID: 9B74D3A59181947D
1 changed files with 2 additions and 2 deletions

4
jenkins/Jenkinsfile vendored
View File

@ -32,7 +32,7 @@ pipeline {
unstash 'dockerfile'
unstash 'ecodash-x86'
unstash 'templates'
sh 'docker build -t ecodash .'
sh 'cp jenkins/Dockerfile ./Dockerfile; docker build -t ecodash .'
}
}
@ -55,7 +55,7 @@ pipeline {
unstash 'dockerfile'
unstash 'ecodash-arm'
unstash 'templates'
sh 'docker buildx build --platform linux/arm64 -t ecodash .'
sh 'cp jenkins/Dockerfile ./Dockerfile; docker buildx build --platform linux/arm64 -t ecodash .'
}
}