Fix pipeline
Some checks failed
ecodash/pipeline/head There was a failure building this commit

This commit is contained in:
MassiveBox 2023-07-21 18:10:35 +02:00
parent 90e83eaf62
commit 394091d885
Signed by: massivebox
GPG key ID: 9B74D3A59181947D

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 .'
}
}