I am trying to get all platforms (linux/arm64, linux/amd64) from one repo (ECR) and push it to another.
In the case, if I do "docker pull", it will pull only images corresponding to my local computer architecture.
I can do "docker pull --platform'. It will pull a correct platform, but if I do it for multiple platforms, only the latest one will stay property tagged and the tags for the rest will be removed. So, I can't push them to the new repo.
I am trying to figure out how I can pull all of them (all platforms) and push to the new repo.