add devcontainer for wasm-go plugin developing (#749)

Co-authored-by: Xunzhuo <bitliu@tencent.com>
This commit is contained in:
rinfx
2024-01-26 16:59:06 +08:00
committed by GitHub
parent ad4cfdbd40
commit ccea33655f
4 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{
"name": "Wasm Go Dev",
// "dockerFile": "Dockerfile",
"image": "liuxr25/wasm-go:tinygo-0.29.0",
"runArgs": [
"--user=root"
],
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "/usr/bin/python3"
},
"extensions": [
"ms-python.python",
"golang.go"
]
}
}
}