chore(deps): update mirror.gcr.io/library/ubuntu docker tag to v26 - autoclosed#14207
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the base image in the Dockerfile from Ubuntu 24.04 to 26.04. Feedback correctly identifies that Ubuntu 26.04 is not yet released, which would lead to build failures due to the missing image and compatibility issues with third-party repositories.
| # 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 |
There was a problem hiding this comment.
Ubuntu 26.04 is not a released LTS version (it is expected in April 2026). Using this tag will cause the build to fail as the image does not exist in the registry. Additionally, the Dockerfile relies on several third-party repositories (like Microsoft's for ODBC drivers) that are currently pinned to older Ubuntu versions and will not be compatible with a version 26.04 base image even if it were available.
FROM mirror.gcr.io/library/ubuntu:24.04
This PR contains the following updates:
24.04→26.04Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Never, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.