buildx build –platform amd64,arm64 –push creates 3 resources in ECR – 2 images and 1 image index, how do I tag them?
Running this command - docker buildx build --platforms linux/amd64,linux/arm64 -t mytag --push . It creates an image index and 2 images in my ECR. How do I tag the images and the image index in one command? For now I…