From b6e4cab719817e8bab30f9f809af583f412cbf59 Mon Sep 17 00:00:00 2001 From: Evan Gray Date: Thu, 5 Dec 2024 14:56:06 -0500 Subject: [PATCH] tilt: specify amd64 for cosmwasm containers --- Tiltfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tiltfile b/Tiltfile index c25f7ba2ea..270e9c6b14 100644 --- a/Tiltfile +++ b/Tiltfile @@ -685,12 +685,14 @@ if terra_classic: ref = "terra-image", context = "./terra/devnet", dockerfile = "terra/devnet/Dockerfile", + platform = "linux/amd64", ) docker_build( ref = "terra-contracts", context = "./terra", dockerfile = "./terra/Dockerfile", + platform = "linux/amd64", ) k8s_yaml_with_ns("devnet/terra-devnet.yaml") @@ -711,6 +713,7 @@ if terra2 or wormchain: context = ".", dockerfile = "./cosmwasm/Dockerfile", target = "artifacts", + platform = "linux/amd64", ) if terra2: @@ -718,6 +721,7 @@ if terra2: ref = "terra2-image", context = "./cosmwasm/deployment/terra2/devnet", dockerfile = "./cosmwasm/deployment/terra2/devnet/Dockerfile", + platform = "linux/amd64", ) docker_build( @@ -825,6 +829,7 @@ if wormchain: ref = "wormchaind-image", context = ".", dockerfile = "./wormchain/Dockerfile", + platform = "linux/amd64", build_args = {"num_guardians": str(num_guardians)}, only = [], ignore = ["./wormchain/testing", "./wormchain/ts-sdk", "./wormchain/design", "./wormchain/vue", "./wormchain/build/wormchaind"],