summaryrefslogtreecommitdiff
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
authorIdan Gazit <idan@gazit.me>2020-09-30 23:23:42 -0700
committerIdan Gazit <idan@gazit.me>2020-10-09 18:54:27 -0700
commit5bd09b586e153185850fe468b19fdd0eb534f35d (patch)
tree82b843333009154cc83b35e4bcc9c7d91005dace /.devcontainer/devcontainer.json
parent9231f6c57beb6bfabc030f9debcb659dd964634e (diff)
Remove Dockerfile in favor of image
Per the docs, we can directly specify an image in devcontainer.json: https://code.visualstudio.com/docs/remote/devcontainerjson-reference
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r--.devcontainer/devcontainer.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 7450534..bbf44bc 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -1,6 +1,7 @@
{
"name": "ZMK Development",
- "dockerFile": "Dockerfile",
- "extensions": ["ms-vscode.cpptools"]
+ "image": "zmkfirmware/zephyr-west-action-arm",
+ "extensions": ["ms-vscode.cpptools"],
+ "runArgs": ["--security-opt", "label=disable"]
}