We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f68a66 commit 31520ceCopy full SHA for 31520ce
.devcontainer/Dockerfile
@@ -17,8 +17,11 @@ RUN apt-get update \
17
git \
18
procps \
19
wget \
20
+ nodejs \
21
+ npm \
22
&& rm -rf /var/lib/apt/lists/*
23
24
+RUN wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
25
26
ENV \
27
# Enable detection of running in a container
.devcontainer/install-dotnets.sh
@@ -12,10 +12,11 @@ fi
12
13
# Add additional versions if required
14
DOTNET_VERSIONS=(
15
- # 'latest'
16
- '5.0.408'
+ 'latest'
+ 'LTS'
+ 'STS'
)
for version in ${DOTNET_VERSIONS[@]}; do
echo "installing dotnet $version"
- /bin/bash dotnet-install.sh --verbose --version $version
+ /bin/bash dotnet-install.sh --verbose --channel $version
done
0 commit comments