Browse Source

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
xmkb
Idan Gazit 4 years ago
parent
commit
5bd09b586e
No known key found for this signature in database
GPG Key ID: FA1E9B15C71BD7FC
  1. 1
      .devcontainer/Dockerfile
  2. 5
      .devcontainer/devcontainer.json

1
.devcontainer/Dockerfile

@ -1 +0,0 @@ @@ -1 +0,0 @@
FROM zmkfirmware/zephyr-west-action-arm

5
.devcontainer/devcontainer.json

@ -1,6 +1,7 @@ @@ -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"]
}

Loading…
Cancel
Save