How to tag an image as `latest` using Docker Buildx
I'm using Docker Buildx to build my images to multiple architectures, as I'm building them on a MacOS (arm64) but want them to run on a Cloud Run (amd64). I'm running: $ docker buildx build --push --platform linux/amd64,linux/arm64 --tag stanleysathler/terraform-starter-carts-api:1.0.0…