-
Notifications
You must be signed in to change notification settings - Fork 1.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
Add jammy and kinetic (ubuntu 22.04 and 22.10) #791
Conversation
See #708 |
Just an FYI, Ubuntu has dropped |
Another alternative for adding Those debian variants at docker hub has builds for Would you be interested in having a |
Unfortunately, as the name implies, Debian Unstable is a fairly unstable base to build on top of, and is frequently broken (by design), so we don't have very many official images based on it (and would prefer not to maintain any ourselves). |
We've decided to add If all goes well with our riscv64 builders, we should have this fairly soon ;) |
@cjdcordeiro we are not seeing |
@tuler yes they will. It requires a few changes in our build systems in order to make both i386 and riscv64 coexist across the spectrum of currently supported releases, but we do intend do start publishing for riscv64 again. It is currently being worked on but I don't yet have an ETA. |
@cjdcordeiro any update on this? |
Sorry, we unfortunately have no plans to support Ubuntu based images here (our matrix is already pretty large supporting all actively supported release lines of Python upstream multiplied by 2x Debian + 2x Alpine + 2x Windows and their respective sets of supported CPU architectures and Python is relatively heavy to build). |
FYI (and especially for @tuler) the riscv64 support for Ubuntu container images is being worked on atm. It is already in QA and should reach the official images soon. |
My end goal is to build images for
linux/riscv64
architecture.The problem is that the base used here is debian and that doesn't have an official
riscv64
build yet. On the other hand ubuntu images already haveriscv64
official builds.Another separate problem is the integration in the build system, which I believe is based on a Jenkins system, to build riscv64 images. I successfully built riscv64 images in my local arm64 Apple M1 using docker buildx riscv64 support through qemu.
This PR is only about adding ubuntu based images though, which will help to achieve the goal of having riscv64 images.