pulumi/.devcontainer/devcontainer.json

28 lines
722 B
JSON

{
"name": "Pulumi",
"build": {
"dockerfile": "Dockerfile",
"args": {
"USER_NAME": "user",
"USER_UID": "1000"
}
},
"containerEnv": {
"PULUMI_ACCESS_TOKEN": "${localEnv:PULUMI_ACCESS_TOKEN}",
"PULUMI_TEST_ORG": "${localEnv:PULUMI_TEST_ORG}"
},
"remoteUser": "user",
"extensions": ["golang.go", "ms-dotnettools.csharp", "ms-python.python"],
// We want to dotnet restore all projects on startup so that omnisharp doesn't complain about lots of missing types on startup.
"postCreateCommand": "find -name \"*.??proj\" | xargs -L1 dotnet restore",
"settings": {
"extensions.ignoreRecommendations": true
}
}