Skip to content

Commit 9828aaa

Browse files
committed
Updated Dockerfile to lock to Beta7 image.
1 parent 034a6fc commit 9828aaa

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM microsoft/aspnet
1+
FROM microsoft/aspnet:1.0.0-beta7
22

33
COPY project.json /app/
44
WORKDIR /app
55
RUN ["dnu", "restore"]
66
COPY . /app
77

88
EXPOSE 5004
9-
ENTRYPOINT ["dnx", "project.json", "kestrel"]
9+
ENTRYPOINT ["dnx", "-p", "project.json", "kestrel"]

samples/1.0.0-beta7/HelloMvc/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"wwwroot"
66
],
77
"packExclude": [
8-
"**.kproj",
8+
"**.xproj",
99
"**.user",
1010
"**.vspscc"
1111
],
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM microsoft/aspnet
1+
FROM microsoft/aspnet:1.0.0-beta7
22

33
COPY project.json /app/
44
WORKDIR /app
55
RUN ["dnu", "restore"]
66
COPY . /app
77

88
EXPOSE 5004
9-
ENTRYPOINT ["dnx", "project.json", "kestrel"]
9+
ENTRYPOINT ["dnx", "-p", "project.json", "kestrel"]

samples/1.0.0-beta7/HelloWeb/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"wwwroot"
66
],
77
"packExclude": [
8-
"**.kproj",
8+
"**.xproj",
99
"**.user",
1010
"**.vspscc"
1111
],

samples/1.0.0-beta7/global.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
2+
"sdk": {
3+
"version": "1.0.0-beta7"
4+
}
35
}

0 commit comments

Comments
 (0)