From 86df82f0516a8c178d63725c3dbbb3715f50b0c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomas=20Hellstr=C3=B6m?= Date: Sat, 17 Dec 2022 14:25:35 +0100 Subject: [PATCH] Upgraded devcontainer to .NET 7 --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index f1748f663..07b25e9ff 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,7 +3,7 @@ # Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. #------------------------------------------------------------------------------------------------------------- -FROM mcr.microsoft.com/dotnet/sdk:6.0-focal +FROM mcr.microsoft.com/dotnet/sdk:7.0.100-bullseye-slim-amd64 RUN apt-get update && apt-get install -y ssh # This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,