Files
MediaPipe.NET/.codespaces.dockerfile
Ayase Minori baf61c75da Install missing dotnet TFM in base images
Signed-off-by: GitHub <noreply@github.com>
2023-03-12 08:07:14 +00:00

13 lines
520 B
Docker

FROM mcr.microsoft.com/vscode/devcontainers/base:debian
USER vscode
# Install .NET SDK
# Source: https://docs.microsoft.com/dotnet/core/install/linux-scripted-manual#scripted-install
RUN mkdir -p /home/vscode/dotnet && \
curl -fsSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --install-dir /home/vscode/dotnet -c STS && \
curl -fsSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --install-dir /home/vscode/dotnet -c LTS
ENV DOTNET_ROOT=/home/vscode/dotnet
ENV PATH=$PATH:/home/vscode/dotnet