mirror of
https://github.com/Wessel/nhl-setgame.git
synced 2026-07-14 04:24:23 +02:00
16 lines
679 B
Docker
Executable File
16 lines
679 B
Docker
Executable File
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 <your-package-list-here>
|
|
|
|
# [Optional] Uncomment this line to install global node packages.
|
|
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
|
|
RUN dotnet tool install --global dotnet-ef
|