Conversation
…ersions Agent-Logs-Url: https://github.com/devcontainer-community/devcontainer-features/sessions/ef38923a-7098-4855-ade7-c69dd5204da3 Co-authored-by: sebst <592313+sebst@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add feature 'ca-certificates' as 'installsAfter' to all features
Add ca-certificates as installsAfter to all features + bump patch versions
Mar 31, 2026
sebst
requested changes
Mar 31, 2026
Member
sebst
left a comment
There was a problem hiding this comment.
Update top level readme.md to reflect version bumps
Use ca-certificate:latest instead of ca-certificates:1
As this is needed for every future skill, please adjust the skills accordingly
… files Agent-Logs-Url: https://github.com/devcontainer-community/devcontainer-features/sessions/f6bdb18a-6561-47db-ae12-4ccd934483ae Co-authored-by: sebst <592313+sebst@users.noreply.github.com>
Contributor
Author
Done in commit cd98476:
|
sebst
approved these changes
Mar 31, 2026
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.
Every feature should declare
ca-certificatesas aninstallsAfterdependency to ensure CA certs are available before any feature runs network-dependent installs.Changes
devcontainer-feature.jsonfiles updated — all features exceptca-certificatesitselfinstallsAfteradded/updated to includeghcr.io/devcontainer-community/features/ca-certificates:latestas the first entry; existinginstallsAfterentries are preservedREADME.mdupdated to reflect all bumped versionscreate-devcontainer-featureandchange-devcontainer-featureskills now includeca-certificates:latestas a requiredinstallsAfterentry for all featuresExample
{ "id": "fzf", "version": "1.0.1", "installsAfter": [ "ghcr.io/devcontainer-community/features/ca-certificates:latest" ] }For features that already had
installsAfter(e.g.aws-cli), the ca-certificates ref is prepended:{ "id": "aws-cli", "version": "1.1.3", "installsAfter": [ "ghcr.io/devcontainer-community/features/ca-certificates:latest", "ghcr.io/devcontainers/features/common-utils" ] }