pulumi/.devcontainer/devcontainer.json

27 lines
589 B
JSON
Raw Normal View History

2021-05-14 19:28:45 +02:00
{
"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}"
},
2021-05-14 19:28:45 +02:00
"remoteUser": "user",
"extensions": ["golang.go", "ms-dotnettools.csharp", "ms-python.python", "formulahendry.dotnet-test-explorer"],
"postCreateCommand": "make ensure",
2021-05-14 19:28:45 +02:00
"settings": {
"extensions.ignoreRecommendations": true
}
}