nomicode / devcontainer

A general purpose development container for use with Microsoft VS Code and GitHub Codespaces
MIT License
0 stars 0 forks source link

Make some package installs in the devcontainer optional #70

Open nomicode opened 1 year ago

nomicode commented 1 year ago

Currently, the devcontainer installs all the packages that are configured. This approach leads to a bulkier container image, which then increases the time it takes to create a Codespace initially.

To potentially alleviate this, consider making some package installations optional. Instead of executing the installation scripts during the devcontainer's build process, we can keep these scripts available on the file system. This way, devcontainers that come later can choose to install only the packages they need.