The docker image didn't build anymore, because it got a 404 downloading some dependency.
So, I thought, we may as well upgrade the base image to the latest Debian.
Interestingly, Python doesn't like pip install anymore: https://peps.python.org/pep-0668/
Not sure that's really useful for a docker image and/or ReBench, so, I'll just override the behavior with pip install --break-system-packages
The docker image didn't build anymore, because it got a 404 downloading some dependency.
So, I thought, we may as well upgrade the base image to the latest Debian.
Interestingly, Python doesn't like
pip install
anymore: https://peps.python.org/pep-0668/ Not sure that's really useful for a docker image and/or ReBench, so, I'll just override the behavior withpip install --break-system-packages