fresh-spring-82225
03/12/2023, 1:10 AMpolite-umbrella-11196
03/12/2023, 3:22 AMconst createImage = (repositoryUrl: pulumi.Output<any>) => {
const recorderImage = new awsx.ecr.Image('recorder', {
repositoryUrl,
extraOptions: ['--platform', 'linux/amd64'],
path: SERVICE_PATH,
});
return recorderImage.imageUri;
};
That’s the pulumi command I’m using right now to build an image; dunno if it helps at all.fresh-spring-82225
03/13/2023, 4:25 PMThe requested image's platform (linux/arm64) does not match the detected host platform (linux/amd64) and no specific platform was requested
.polite-umbrella-11196
03/13/2023, 5:09 PMextraOptions: ['--platform', 'linux/arm64'],