Update Dockerfiles to use Node 4.x (was using 0.x). Fixes #373

This commit is contained in:
SteveSandersonMS
2016-10-11 16:50:03 +01:00
parent a6d959b783
commit 6a9b7accce
4 changed files with 8 additions and 4 deletions

View File

@@ -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