Merge pull request #134 from cndoit18/add-devcontainer

feat: support devcontainer
This commit is contained in:
Yifan Wu 2024-01-21 00:53:18 +08:00
parent 8595e87779
commit 5a1eb8d01e
4 changed files with 47 additions and 19 deletions

View file

@ -0,0 +1,21 @@
{
"name": "rcore-tutorial-v3",
"build": {
"dockerfile": "../Dockerfile",
"args": {
"QEMU_VERSION": "7.0.0",
"DEBIAN_FRONTEND": "noninteractive",
"GDB_VERSION": "14.1"
}
},
"postCreateCommand": "rustup show",
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"ms-vscode.cpptools",
"tamasfe.even-better-toml"
]
}
}
}