From 910623f541529bf9c2e1b4bb4a38926cb950a779 Mon Sep 17 00:00:00 2001 From: Joshua Higgins Date: Sat, 27 Dec 2025 14:09:01 -0500 Subject: [PATCH] fix: install node in container --- .devcontainer/scripts/post_create.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.devcontainer/scripts/post_create.sh b/.devcontainer/scripts/post_create.sh index ab5be4b..9c2736d 100755 --- a/.devcontainer/scripts/post_create.sh +++ b/.devcontainer/scripts/post_create.sh @@ -2,6 +2,8 @@ install_devcontainer_cli() { set -e + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash + nvm install 24 echo "🔧 Installing DevContainer CLI..." cd "$(dirname "$0")/../tools/devcontainer-cli" npm ci --omit=dev