-
Notifications
You must be signed in to change notification settings - Fork 411
Maintainer notes
Simon Warta edited this page Apr 6, 2022
·
2 revisions
A collection of potentially wrong and outdated notes from mainteiners for maintainers.
- Intel:
docker build --pull -t "cosmwasm/wasmd:manual" .
- ARM:
docker build --pull -t "cosmwasm/wasmd:manual" --build-arg arch=aarch64 .
- On ARM for Intel:
docker buildx build --platform linux/amd64 --pull -t "cosmwasm/wasmd:manual" .
- On Intel for ARM:
docker buildx build --platform linux/arm64/v8 --pull -t "cosmwasm/wasmd:manual" --build-arg arch=aarch64 .