wasm-micro-runtime/.devcontainer/devcontainer.json
liang.he f71165f0ed
update Dockerfile and devcontainer configuration (#4773)
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.

Add libzstd for LLVM linking
2026-01-08 12:23:42 +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"
}