From 288505fd44a3633f956031a594e60d237fe14320 Mon Sep 17 00:00:00 2001 From: Vjacheslav Trushkin Date: Sat, 28 May 2022 16:07:19 +0300 Subject: [PATCH] Attempt to not run install script when devcontainer is initialised --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b4f4c0e..ca8f7e3 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -27,7 +27,7 @@ // "forwardPorts": [], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "npm install", + "postCreateCommand": "echo \"Run 'npm install' to install dependencies and build packages\"", // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. "remoteUser": "node"