github.com/GoogleContainerTools/skaffold@v1.39.18/examples/cross-platform-builds/README.md (about)

     1  ### Example: Getting started with a simple go app built for specified platform
     2  
     3  Run:
     4  ```
     5  skaffold build --default-repo=gcr.io/<your-repo> --platform=linux/arm64 --cache-artifacts=false
     6  ```
     7  
     8  This will build for the `linux/arm64` platform and push the image. You can test it by running:
     9  
    10  ```
    11  docker run --platform linux/arm64 --rm -it gcr.io/<your-repo>/image:tag
    12  ```