Some devcontainer features I find useful.
- bats: Install
bats(Bash Automated Testing System)
In your IDE, add the features to your devcontainer.json (e.g. VSCode). Each feature has a README.md that details options.
{
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"bats": {}
}
}This repo follows the proposed dev container feature distribution specification.