We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e61c20f commit 66a1e8cCopy full SHA for 66a1e8c
1 file changed
packages/cli/src/lib/build-strategies/strategies/DockerVMStrategy.ts
@@ -194,7 +194,7 @@ export class DockerVMBuildStrategy extends BuildStrategy<void> {
194
this._volumePaths.linkedPackages
195
)}:/linked-packages`,
196
cacheVolume,
197
- `${CONFIGS[language].baseImage}:latest`,
+ `${CONFIGS[language].baseImage}:${process.arch}`,
198
"/bin/bash",
199
"--verbose",
200
"/project/polywrap-build.sh",
@@ -221,7 +221,7 @@ export class DockerVMBuildStrategy extends BuildStrategy<void> {
221
`${path.resolve(
222
223
224
+ `${CONFIGS[language].baseImage}:${process.arch}}`,
225
226
"-c",
227
'"chmod -R 777 /project && chmod -R 777 /linked-packages"',
0 commit comments