[DNM] chore: migrate images to Ubuntu 26.04 (resolute)#336
Draft
matifali wants to merge 3 commits into
Draft
Conversation
johnstcn
reviewed
Jul 23, 2026
johnstcn
left a comment
Member
There was a problem hiding this comment.
This change is worth calling out, as users of the rolling tag will need to be aware of the change. How do we plan to communicate this?
Member
Author
Good call @johnstcn. I will hold this change until release 2.36, and we will announce it on Coder.com/chnagelog along with that release. Any customers using this should not be using the |
matifali
marked this pull request as draft
July 23, 2026 14:02
johnstcn
approved these changes
Jul 23, 2026
johnstcn
left a comment
Member
There was a problem hiding this comment.
Approving to unblock. As per Atif's comment above, do not merge until release.
matifali
marked this pull request as draft
July 23, 2026 14:47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Migrate the images to the newly released Ubuntu 26.04 LTS (
resolute).UBUNTU_VERSIONinscripts/images.shis the single source of truth, so the Ubuntu-native images and everything that inherits from them roll forward from one change.Changes
scripts/images.sh:UBUNTU_VERSIONnoble→resolute; addedUBUNTU_VERSION_OVERRIDES+ubuntu_version_forhelper to pin individual images to a different release.images/base/ubuntu.Dockerfile:ARG UBUNTU_VERSIONdefault →resoluteimages/minimal/ubuntu.Dockerfile:ARG UBUNTU_VERSIONdefault →resoluteimages/base/docker.list: Docker apt suitenoble→resoluteREADME.md: tag examplesubuntu-noble→ubuntu-resoluteimages/universal/ubuntu.Dockerfile: pinned tonoblevia the override (see note)scripts/build_images.sh/scripts/push_images.sh: resolve the Ubuntu release per image viaubuntu_version_for, so both the build arg and the version-specific tags reflect the release each image is actually built from.golang,java,node, anddesktopneed no file changes; they inherit frombase/minimaland roll forward automatically.Validation
Verified upstream availability of the required
resolutebases:resoluteavailable?ubuntu:resolute/ubuntu:26.04download.docker.com/linux/ubuntu resolute stablemcr.microsoft.com/devcontainers/universal:resolutenoble)Verified per-image tag resolution:
Note
The
universalimage is built frommcr.microsoft.com/devcontainers/universal, which does not yet publish aresolutetag. It's pinned tonobleviaUBUNTU_VERSION_OVERRIDES, which also ensures it is published asubuntu-noble(not mislabeled asubuntu-resolute). Tracked in #335 to re-couple once upstream publishes aresolutetag.Caution
Not built locally. CI / a Depot build is the validation gate before merge.