chore(deps): update mirror.gcr.io/library/ubuntu docker tag to v26#14235
chore(deps): update mirror.gcr.io/library/ubuntu docker tag to v26#14235renovate-bot wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Code Review
This pull request attempts to upgrade the base Docker image from Ubuntu 24.04 to Ubuntu 26.04. However, this upgrade is premature as Ubuntu 26.04 is not yet a stable LTS release and will break the Docker build due to compatibility issues with compiling older Python versions, hardcoded repository paths, and deprecated tools like apt-key. It is recommended to revert this change and remain on Ubuntu 24.04.
| # 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.
Upgrading to ubuntu:26.04 is premature and will break the Docker build. Ubuntu 26.04 is not yet a stable LTS release. Additionally, upgrading the base image to this version introduces several compatibility issues:
- Python Compilation Failures: Older Python versions (such as 3.7, 3.8, and 3.9) specified in
PYTHON_VERSIONScannot be compiled on newer Ubuntu releases because they require OpenSSL 1.1.1, which is not available, and they are incompatible with newerglibc/gccversions. - Hardcoded Repository Paths: The Microsoft ODBC driver installation (line 103) explicitly uses the Ubuntu 20.04 repository (
ubuntu/20.04/prod.list), which is incompatible with Ubuntu 26.04. - Deprecated Tools: The use of
apt-key(lines 74, 102, 253) is deprecated and may fail entirely on newer Ubuntu releases.
It is recommended to close this PR and remain on the stable ubuntu:24.04 LTS release.
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.