This message was deleted.
# aws
s
This message was deleted.
m
This will enable buildkit, but to have it use
buildx
instead of
build
, you might be best taking docker’s advice of aliasing
buildx
to
build
Copy code
image: awsx.ecs.Image.fromDockerBuild(`${appName}-image`, {
          env: {
            DOCKER_BUILDKIT: "1",
          },
        }),
d
thanks yes I did alias docker build to docker buildx but I also want to make sure that when I build an image with pulumi I do a buildx for the right platform (not M1)
but I guess I can pass a param in the env there
actually no I can't because it's a param.. such as
Copy code
--platform linux/amd64,linux/arm64,linux/ppc64le
🤯