Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "Development Container",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/wandb/catnip/feature:1": {}
Comment on lines +3 to +5

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Provide Node toolchain in devcontainer

The new devcontainer uses the minimal mcr.microsoft.com/devcontainers/base:ubuntu image and only installs the Catnip feature, so Codespaces/Dev Container builds for this Astro/npm repo will start without Node or npm. Anyone opening the repo in that container will hit immediate failures running npm install or npm run dev until they manually install a Node runtime, whereas Codespaces previously defaulted to a Node-capable image. Please add a Node feature/image so the development environment matches the project requirements.

Useful? React with 👍 / 👎.

},
"forwardPorts": [
6369
]
}