-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use the same tag for multiple cpu architectures in docker images #5174
Comments
However, my question is: why are we generating architecture-specific tags initially and then merging them later? Wouldn't it be cleaner and more efficient to push a single tag directly, without separating them at the start? This could help in keeping the package repository more organized. |
I don't know how to do it properly because the CI runners are different from machines and architectures so that I think the manifest could be also different. |
This is not my emergent issue. |
I will investigate try to find out more straight-forward solution to this. |
This should be resolved with #5256 |
Checklist
Description
Right now we have different tags for
arm64
andamd64
images.This is redundant since docker supports multiple cpu arch's in same tag.
Example:
Purpose
Simplify the docker image tags by making use of modern docker features.
Possible approaches
https://www.docker.com/blog/multi-arch-build-and-images-the-simple-way/
Definition of done
Image tags don't have
arm64
oramd64
keywords in them.The text was updated successfully, but these errors were encountered: