Update Dockerfile

The app doesn't run in Docker on base image `microsoft/dotnet:latest` because Microsoft.NETCore.App 1.0.1 isn't installed. Only 1.0.0 is installed. The app runs fine on base image `microsoft/dotnet:1.0.0-preview2-onbuild`.
This commit is contained in:
Korneel
2016-10-03 15:00:08 +02:00
committed by Steve Sanderson
parent ff396377b9
commit a0ebab1f28

View File

@@ -1,4 +1,4 @@
FROM microsoft/dotnet:latest FROM microsoft/dotnet:1.0.0-preview2-onbuild
RUN apt-get update RUN apt-get update
RUN apt-get install -y build-essential nodejs nodejs-legacy RUN apt-get install -y build-essential nodejs nodejs-legacy