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
This commit is contained in:
Idan Gazit 2020-09-30 23:23:42 -07:00
parent 9231f6c57b
commit 5bd09b586e
No known key found for this signature in database
GPG Key ID: FA1E9B15C71BD7FC
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -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"]
}