Skip to content

Commit

Permalink
tilt: specify amd64 for cosmwasm containers
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-gray committed Dec 6, 2024
1 parent 6c48444 commit b6e4cab
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -711,13 +713,15 @@ if terra2 or wormchain:
context = ".",
dockerfile = "./cosmwasm/Dockerfile",
target = "artifacts",
platform = "linux/amd64",
)

if terra2:
docker_build(
ref = "terra2-image",
context = "./cosmwasm/deployment/terra2/devnet",
dockerfile = "./cosmwasm/deployment/terra2/devnet/Dockerfile",
platform = "linux/amd64",
)

docker_build(
Expand Down Expand Up @@ -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"],
Expand Down

0 comments on commit b6e4cab

Please sign in to comment.