FROM mcr.microsoft.com/devcontainers/dotnet:1-9.0-bookworm # Install .NET 8.0 SDK RUN wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh \ && chmod +x dotnet-install.sh \ && ./dotnet-install.sh --version 8.0.100 \ && rm dotnet-install.sh # [Optional] Uncomment this section to install additional OS packages. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ # && apt-get -y install --no-install-recommends # [Optional] Uncomment this line to install global node packages. # RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g " 2>&1 RUN dotnet tool install --global dotnet-ef