We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abe87fe commit 511ae59Copy full SHA for 511ae59
Dockerfile
@@ -0,0 +1,9 @@
1
+FROM mcr.microsoft.com/dotnet/core/sdk:2.2
2
+
3
+# Install NodeJs
4
+RUN apt-get update \
5
+ && apt-get install curl \
6
+ && curl -sL https://deb.nodesource.com/setup_10.x | bash - \
7
+ && apt-get install -y nodejs \
8
+ && echo 'node verions:' $(node -v) \
9
+ && echo 'npm version:' $(npm -v)
0 commit comments