Skip to content

Commit

Permalink
#8841 set provenance false
Browse files Browse the repository at this point in the history
  • Loading branch information
1yuv committed Feb 16, 2024
1 parent b1a7692 commit a5d933d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ const buildMultiPlatformImages = async () => {
for (const service of versions.MULTIPLATFORM_INFRASTRUCTURE) {
console.log(`\n\nBuilding multiplatform docker image for ${service}\n\n`);
const tag = versions.getImageTag(service);
await exec('docker', ['buildx', 'build', '--platform=linux/amd64,linux/arm64',
await exec('docker', ['buildx', 'build', '--provenance=false', '--platform=linux/amd64,linux/arm64',
'-f', `./Dockerfile`, '--tag', tag, '--push', '.'], { cwd: service });
}
};
Expand Down

0 comments on commit a5d933d

Please sign in to comment.