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:
authorglennc <glennc@microsoft.com>2015-11-18 23:03:14 +0300
committerglennc <glennc@microsoft.com>2015-11-18 23:03:14 +0300
commit55692574b4dad17326b46e0b09f954b2a99e1cab (patch)
tree702cc3db3cec6670a8c67a10336acc29d62e479c
parent43076b8f9556a188acf6bf50d650bc68c30e468e (diff)
Missed saving the change to helloMVC.v1.0.0-rc1-final
-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"]