Files

28 lines
712 B
JSON
Raw Permalink Normal View History

2022-10-17 14:03:24 +02:00
{
"name": "Actions Runner Devcontainer",
"image": "mcr.microsoft.com/devcontainers/base:focal",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:1": {},
"ghcr.io/devcontainers/features/dotnet": {
2024-04-14 22:47:26 -04:00
"version": "6.0.421"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "16"
2024-02-06 10:06:07 -05:00
},
"ghcr.io/devcontainers/features/sshd:1": {
2024-02-19 00:34:02 -05:00
"version": "latest"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"ms-dotnettools.csharp",
"eamodio.gitlens"
]
}
},
"postCreateCommand": "dotnet restore src/Test && dotnet restore src/Runner.PluginHost",
"remoteUser": "vscode"
}