Skip to content

Commit cd3e184

Browse files
committed
fix: Docker cross build not installed unless explicitly '--load'ed #99
1 parent 5b0c34b commit cd3e184

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

npm-js/kalix-scripts/bin/kalix-scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const kalixScriptDir = path.resolve(__dirname, '..');
1717

1818
const dockerBuildArgs =
1919
process.arch === 'arm64'
20-
? ['buildx', 'build', '--platform=linux/amd64']
20+
? ['buildx', 'build', '--platform=linux/amd64', '--load']
2121
: ['build'];
2222

2323
const dockerBuild = (dockerTag) =>

0 commit comments

Comments
 (0)