azure-osconfig/.devcontainer/devcontainer.json

24 строки
659 B
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/cpp
{
"name": "azure-osconfig",
"build": {
"dockerfile": "Dockerfile"
},
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"postCreateCommand": "git submodule update --init",
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens",
"github.copilot",
"github.vscode-github-actions",
"ms-vscode.cpptools-extension-pack"
]
}
},
"remoteUser": "root"
}