arvindKandpal-ksolves opened a new pull request, #4632: URL: https://github.com/apache/cassandra/pull/4632
### Description This is a backport of the fix for [CASSANDRA-20181](https://issues.apache.org/jira/browse/CASSANDRA-20181) to the `cassandra-5.0` branch. The Docker build environments for `cqlsh` were failing because the previous base image (`ubuntu:bionic`) is EOL and does not support the required Python versions. ### Changes * **pylib/Dockerfile.ubuntu.py3**: Upgraded to `ubuntu:focal` (20.04). * **pylib/Dockerfile.ubuntu.py38**: Upgraded to `ubuntu:focal` (20.04). * **pylib/Dockerfile.ubuntu.py311**: Upgraded to `ubuntu:jammy` (22.04) and added `DEBIAN_FRONTEND=noninteractive` to prevent build hangs during `tzdata` configuration. ### Verification I have verified the fix locally by running the build commands for the 5.0 branch: 1. `docker build . -f pylib/Dockerfile.ubuntu.py3 -t test-py3-5.0` 2. `docker build . -f pylib/Dockerfile.ubuntu.py38 -t test-py38-5.0` 3. `docker build . -f pylib/Dockerfile.ubuntu.py311 -t test-py311-5.0` All builds completed successfully. patch by arvindksi274; for CASSANDRA-20181 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

