Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .kokoro/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# We want to use LTS ubuntu from our mirror because dockerhub has a
# rate limit.
FROM mirror.gcr.io/library/ubuntu:24.04
FROM mirror.gcr.io/library/ubuntu:26.04
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Upgrading the base image to Ubuntu 26.04 is premature and will break the build. Ubuntu 26.04 is not yet a stable LTS release, and the image may not be available in the mirror. Furthermore, older Python versions (such as 3.7, 3.8, and 3.9) defined in PYTHON_VERSIONS will fail to compile on newer Ubuntu versions due to toolchain upgrades and the absence of older OpenSSL versions (like OpenSSL 1.1.1) which these Python versions require. Other installations, such as the Microsoft ODBC driver (currently configured for Ubuntu 20.04) and Chrome/Chromedriver, may also be incompatible. Please stick to the stable Ubuntu 24.04 LTS release.

FROM mirror.gcr.io/library/ubuntu:24.04


ENV DEBIAN_FRONTEND noninteractive

Expand Down