-
Notifications
You must be signed in to change notification settings - Fork 411
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
Add a feature that installs dependencies from an Aptfile.dev
file
#1136
Add a feature that installs dependencies from an Aptfile.dev
file
#1136
Conversation
@microsoft-github-policy-service agree |
@viktorianer Have you read the README and CONTRIBUTING.md?
Lines 20 to 28 in 302feca
I don't think contributions to add new Features are acceptable. |
Thank you for the feedback. I have reviewed those documents and understand that this repository focuses on improvements and bug fixes for the existing set of maintained Features. I completely understand if adding a new Feature doesn’t align with the current goals of this repository. If this contribution is not considered for merging, I’m happy to proceed by maintaining this Feature in a separate repository. Thank you for your time and consideration! |
Hi 👋 As @eitsupi already mentioned, we appreciate your Feature contribution, however, the However, we would appreciate if you could add this Feature in a separate repository of your control. The devcontainers/feature-starter repo has more guidance on self authoring them. Once you've self authored and if you'd like to share it with the community, we'd recommend adding it to the index. It will make them visible in our supporting tools (like https://containers.dev/templates, Dev Containers Extension, GitHub Codespaces etc). Feel free to ask any questions/queries along the way, feedbacks are welcome too! |
If anyone needs or wants to use this feature, you can now find it here: https://github.com/viktorianer/devcontainer-features. I’d also love to see this merged so it gets listed: devcontainers/devcontainers.github.io#514. Thanks a lot! |
Description:
This PR introduces a new feature for installing apt dependencies in the DevContainer environment using an
Aptfile.dev
file. The feature simplifies the process of managing apt packages required for the development environment by specifying them in a file and automating the installation during the container setup process.Usage:
To use the feature, include the following in your
devcontainer.json
:Example
Aptfile.dev
Additional Information:
Based on the approach found in https://github.com/heroku/heroku-buildpack-apt and https://docs.digitalocean.com/products/app-platform/reference/buildpacks/aptfile/.