From e0edd98c1bcff4045924d08442cfa6e0d4a36f65 Mon Sep 17 00:00:00 2001 From: Christopher Schuchardt Date: Fri, 13 Dec 2024 01:45:40 -0500 Subject: [PATCH] [Fixed] Dotnet version for DevContainer (#3620) * Update to correct version of `dotnet` for devcontainer * Add comment --------- Co-authored-by: Jimmy Co-authored-by: NGD Admin <154295625+NGDAdmin@users.noreply.github.com> --- .devcontainer/devcontainer.dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.dockerfile b/.devcontainer/devcontainer.dockerfile index 5c72dc8cfb..d2ccf16581 100644 --- a/.devcontainer/devcontainer.dockerfile +++ b/.devcontainer/devcontainer.dockerfile @@ -1,3 +1,6 @@ -FROM mcr.microsoft.com/devcontainers/dotnet:9.0-noble +# https://github.com/dotnet/dotnet-docker/blob/main/README.sdk.md +# https://mcr.microsoft.com/en-us/artifact/mar/dotnet/sdk/tags <-- this shows all images +FROM mcr.microsoft.com/dotnet/sdk:9.0.101-noble + # Install the libleveldb-dev package RUN apt-get update && apt-get install -y libleveldb-dev