dragonfly/.devcontainer/ubuntu22/devcontainer.json
2024-03-09 17:38:01 +02:00

23 lines
552 B
JSON

{
"name": "ubuntu22",
"image": "ghcr.io/romange/ubuntu-dev:22",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"ms-vscode.cpptools-themes",
"twxs.cmake"
],
"settings": {
"cmake.buildDirectory": "/build",
"extensions.ignoreRecommendations": true
}
}
},
"mounts": [
"source=ubuntu22-vol,target=/build,type=volume"
],
"postCreateCommand": ".devcontainer/ubuntu22/post-create.sh ${containerWorkspaceFolder}"
}