Skip to content

Commit

Permalink
fix: Docker cross build not installed unless explicitly '--load'ed #99 (
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren committed Jun 28, 2022
1 parent 54860ab commit f50b314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion npm-js/kalix-scripts/bin/kalix-scripts.js
Expand Up @@ -17,7 +17,7 @@ const kalixScriptDir = path.resolve(__dirname, '..');

const dockerBuildArgs =
process.arch === 'arm64'
? ['buildx', 'build', '--platform=linux/amd64']
? ['buildx', 'build', '--platform=linux/amd64', '--load']
: ['build'];

const dockerBuild = (dockerTag) =>
Expand Down

0 comments on commit f50b314

Please sign in to comment.