diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index c9881d2..0000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -ARG VARIANT=8.0 -FROM mcr.microsoft.com/dotnet/sdk:${VARIANT} -ENV PATH $PATH:/home/vscode/.dotnet:/home/vscode/.dotnet/tools \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 21a7b5d..dca9c3d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,32 +1,16 @@ { - "build": { - "dockerfile": "./Dockerfile", - "context": "." - }, + "image": "mcr.microsoft.com/devcontainers/dotnet:latest", "features": { "ghcr.io/azure/azure-dev/azd:latest": {}, - "ghcr.io/devcontainers/features/docker-in-docker:2": {}, - "ghcr.io/devcontainers/features/common-utils:2": { - "installZsh": "true", - "username": "vscode", - "userUid": "1000", - "userGid": "1000", - "upgradePackages": "true" - }, - "ghcr.io/devcontainers/features/node:1": { - "version": "none" - }, - "ghcr.io/devcontainers/features/git:1": { - "version": "latest", - "ppa": "false" - } + "ghcr.io/devcontainers/features/azure-cli:latest": {}, + "ghcr.io/devcontainers/features/docker-in-docker:2": {} }, "customizations": { "vscode": { "extensions": [ - "ms-dotnettools.csharp" + "ms-dotnettools.csdevkit", + "ms-azuretools.azure-dev" ] } - }, - "remoteUser": "vscode" + } }