Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--samples/1.0.0-rc1-final/HelloMvc/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/1.0.0-rc1-final/HelloMvc/Dockerfile b/samples/1.0.0-rc1-final/HelloMvc/Dockerfile
index 275775b705..030d9a4b32 100644
--- a/samples/1.0.0-rc1-final/HelloMvc/Dockerfile
+++ b/samples/1.0.0-rc1-final/HelloMvc/Dockerfile
@@ -1,8 +1,8 @@
FROM microsoft/aspnet:1.0.0-rc1-final
-COPY . /app./
+COPY . /app/
WORKDIR /app
RUN ["dnu", "restore"]
EXPOSE 5004
-ENTRYPOINT ["dnx", "-p", "project.json", "kestrel"]
+ENTRYPOINT ["dnx", "-p", "project.json", "web"]