Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upgrading the base image to Ubuntu 26.04 (
resolute) will completely break the Docker build due to several critical incompatibilities:apt-key: Ubuntu 26.04 (which ships with APT 3.1) has completely removed the deprecatedapt-keyutility. The Dockerfile contains multiple legacy commands usingapt-key add(e.g., lines 74, 102, and 252). These will fail immediately withapt-key: command not found(exit code 127). These must be migrated to modern GPG keyrings (e.g., downloading keys to/etc/apt/keyrings/and using thesigned-byoption in the sources list).https://packages.microsoft.com/config/ubuntu/20.04/prod.list). Installingmsodbcsql17from the 20.04 repository on Ubuntu 26.04 will fail due to missing legacy dependencies (such aslibssl1.1).uutils coreutilsinstead of GNU Coreutils, which can introduce subtle behavioral differences in existing shell scripts.It is recommended to revert this change and keep the base image on Ubuntu 24.04 LTS until the Dockerfile is thoroughly refactored to support Ubuntu 26.04.