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.

critical

The Ubuntu version 26.04 is not a released version of the operating system and does not exist in the registry. Ubuntu LTS releases follow a biennial cycle, and the next LTS (26.04) is not expected until 2026. This change will cause the Docker build to fail with a 'manifest not found' error. It appears the automated dependency update incorrectly identified the next major LTS version before its release. Additionally, any future base image upgrade should also address version-specific configurations elsewhere in the file, such as the Microsoft SQL Server repository on line 103 (currently pinned to 20.04) and the deprecated apt-key usage.

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


ENV DEBIAN_FRONTEND noninteractive

Expand Down