Update Dockerfiles to use Node 4.x (was using 0.x). Fixes #373
This commit is contained in:
parent
a6d959b783
commit
6a9b7accce
|
|
@ -1,7 +1,8 @@
|
|||
FROM microsoft/dotnet:1.0.0-preview2-onbuild
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential nodejs nodejs-legacy
|
||||
RUN wget -qO- https://deb.nodesource.com/setup_4.x | bash -
|
||||
RUN apt-get install -y build-essential nodejs
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
FROM microsoft/dotnet:latest
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential nodejs nodejs-legacy
|
||||
RUN wget -qO- https://deb.nodesource.com/setup_4.x | bash -
|
||||
RUN apt-get install -y build-essential nodejs
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
FROM microsoft/dotnet:latest
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential nodejs nodejs-legacy
|
||||
RUN wget -qO- https://deb.nodesource.com/setup_4.x | bash -
|
||||
RUN apt-get install -y build-essential nodejs
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
FROM microsoft/dotnet:latest
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential nodejs nodejs-legacy
|
||||
RUN wget -qO- https://deb.nodesource.com/setup_4.x | bash -
|
||||
RUN apt-get install -y build-essential nodejs
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue