From 866a9f7991f43242995879c18fa7fc717cc3e8b6 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Fri, 18 Nov 2022 12:15:17 -0500 Subject: Add devcontainer --- .devcontainer/devcontainer.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .devcontainer/devcontainer.json (limited to '.devcontainer') diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..86cd567 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,11 @@ +{ + "name": "Submelon FP", + "image": "mcr.microsoft.com/devcontainers/typescript-node:16-bullseye", + "features": { + "ghcr.io/devcontainers/features/docker-from-docker:1": {} + }, + + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "npm install" + +} -- cgit