-
Notifications
You must be signed in to change notification settings - Fork 1k
Fix devcontainer to work with noble #5115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
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.
Pull request overview
This PR updates the devcontainer configuration to work with Ubuntu Noble (24.04), addressing a critical issue where the devcontainer is currently non-functional. The changes update package sources paths, improve user creation logic, consolidate package installations, and modernize the VSCode configuration structure.
Changes:
- Updated devcontainer from Ubuntu 20.04 to Ubuntu 24.04 (Noble)
- Modernized VSCode devcontainer.json structure using the
customizationsfield - Added development tool extensions for C++, Rust, and debugging support
- Improved Dockerfile user/group creation logic to handle existing UIDs/GIDs
- Updated apt sources path for Noble and consolidated package installations
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| .devcontainer/devcontainer.json | Updated to Ubuntu 24.04 reference, modernized structure with customizations field, added VSCode extensions for development |
| .devcontainer/Dockerfile | Updated apt sources path for Noble, improved user creation logic, consolidated package installation with gcc-14 and clang-20 |
9aefbe3 to
8e638b1
Compare
8e638b1 to
873c59e
Compare
leighmcculloch
left a comment
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.
🚀
Since there was a lot more feedback than I anticipated on #5111 I've split out the most important step of it for now: fixing the devcontainer to actually work with noble / support our current build. The devcontainer literally doesn't work currently, so this is fairly high value to land asap.