diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 1d991699f4..51e30c6552 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,7 @@ # See here for image contents: https://github.com/microsoft/vscode-dev-containers/blob/v0.245.2/containers/dotnet/.devcontainer/Dockerfile -ARG VARIANT="7.0-bullseye-slim" -FROM mcr.microsoft.com/vscode/devcontainers/dotnet:0-${VARIANT} +ARG VARIANT="8.0-bookworm-slim" +FROM mcr.microsoft.com/vscode/devcontainers/dotnet:${VARIANT} # [Choice] Node.js version: none, lts/*, 16, 14, 12, 10 ARG NODE_VERSION="none" diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f2e49779ab..158465dd6d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,8 +3,8 @@ "build": { "dockerfile": "Dockerfile", "args": { - "VARIANT": "7.0", - "NODE_VERSION": "18" + "VARIANT": "8.0", + "NODE_VERSION": "20" } }, "customizations": {