From a0ebab1f286ac82fbbf55b9d6482bfa511b995c2 Mon Sep 17 00:00:00 2001 From: Korneel Date: Mon, 3 Oct 2016 15:00:08 +0200 Subject: [PATCH] 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`. --- templates/Angular2Spa/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/Angular2Spa/Dockerfile b/templates/Angular2Spa/Dockerfile index b828f96..cfa19f0 100644 --- a/templates/Angular2Spa/Dockerfile +++ b/templates/Angular2Spa/Dockerfile @@ -1,4 +1,4 @@ -FROM microsoft/dotnet:latest +FROM microsoft/dotnet:1.0.0-preview2-onbuild RUN apt-get update RUN apt-get install -y build-essential nodejs nodejs-legacy