Skip to content

Commit 511ae59

Browse files
author
Qin
authored
Create Dockerfile
1 parent abe87fe commit 511ae59

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)