wasm-micro-runtime/.devcontainer/devcontainer.json
liang.he@intel.com 46822b8f4b feat: update Dockerfile and devcontainer configuration for improved setup and package management
The goal is to keep the devcontainer image minimal and its build time as fast as possible.
- Remove all rarely used tools.
- Change the base image to the latest template.
- Synchronize the WASI-SDK and WABT versions with those used by the CI.
2025-12-26 16:16:03 +08:00

29 lines
584 B
JSON

{
"name": "WAMR Dev",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "debian-12",
"WASI_SDK_VER": "25",
"WABT_VER": "1.0.37"
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"dtsvet.vscode-wasm",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode.cmake-tools"
]
}
},
"postCreateCommand": "bash .devcontainer/finalize.sh",
"remoteUser": "vscode"
}