aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Lantz <clantz@microsoft.com>2022-08-19 22:32:18 +0300
committerGitHub <noreply@github.com>2022-08-19 22:32:18 +0300
commitad088a11bbc4cca7b406a754071bc23032fb5ed2 (patch)
tree6f88c38b24c8d0f3860a2975c3cabe0023778b63
parent97c1abf39190db4b5d74065ce5d658e6e525e8a4 (diff)
Update devcontainer.json to be spec compliant (#108)
Same as https://github.com/devcontainers/feature-template/pull/2
-rw-r--r--.devcontainer.json13
1 files changed, 12 insertions, 1 deletions
diff --git a/.devcontainer.json b/.devcontainer.json
index 06cdde6..d7cd15d 100644
--- a/.devcontainer.json
+++ b/.devcontainer.json
@@ -1,3 +1,14 @@
{
+ "image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:0-18",
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "mads-hartmann.bash-ide-vscode"
+ ]
+ }
+ },
+ "features": {
+ "ghcr.io/devcontainers/features/docker-in-docker:1": {}
+ },
"postCreateCommand": "npm install -g @devcontainers/cli"
-} \ No newline at end of file
+}