Skip to content
Closed
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

Upgrading to Ubuntu 26.04 breaks the Docker build because apt-key has been completely removed in Ubuntu 26.04. Several commands in this Dockerfile still rely on apt-key add (such as lines 74, 102, and 253). Before upgrading the base image to 26.04, these steps must be migrated to use the modern approach of downloading keys to /etc/apt/keyrings/ and referencing them via the signed-by option in the repository sources files.


ENV DEBIAN_FRONTEND noninteractive

Expand Down