From d18b2b6a1f7e8a33d4f432a4f408edfbd369ced3 Mon Sep 17 00:00:00 2001 From: Arpit Vasani Date: Sat, 28 May 2022 20:33:47 +0530 Subject: [PATCH] Update devcontainer.json --- .devcontainer/devcontainer.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 952b30b58..4765fcea1 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -20,14 +20,11 @@ // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": [ - "cp .env.template .env ", - "pnpm install" - ], + "postCreateCommand": "cp .env.template .env && pnpm install", // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. "remoteUser": "node", "features": { "docker-in-docker": "20.10", "github-cli": "latest" } -} \ No newline at end of file +}