File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " C# (.NET)" ,
3- "image" : " mcr.microsoft.com/devcontainers/dotnet:10.0" ,
3+ // "image": "mcr.microsoft.com/devcontainers/dotnet",
4+ // Workaround for https://github.com/devcontainers/images/issues/1752
5+ "build" : {
6+ "dockerfile" : " dotnet.Dockerfile"
7+ },
48 "features" : {
5- "ghcr.io/devcontainers/features/dotnet:2.4.0 " : {},
9+ "ghcr.io/devcontainers/features/dotnet:2.4.2 " : {},
610 "ghcr.io/devcontainers/features/powershell:1.5.1" : {},
7- "ghcr.io/devcontainers/features/azure-cli:1.2.8 " : {},
8- "ghcr.io/devcontainers/features/docker-in-docker:2.12.4 " : {}
11+ "ghcr.io/devcontainers/features/azure-cli:1.2.9 " : {},
12+ "ghcr.io/devcontainers/features/docker-in-docker:2.14.0 " : {}
913 },
1014 "workspaceFolder" : " /workspaces/agent-framework/dotnet/" ,
1115 "customizations" : {
Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/devcontainers/dotnet
2+
3+ # Remove Yarn repository with expired GPG key to prevent apt-get update failures
4+ # Tracking issue: https://github.com/devcontainers/images/issues/1752
5+ RUN rm -f /etc/apt/sources.list.d/yarn.list
You can’t perform that action at this time.
0 commit comments