Skip to content

Commit 81fe6dc

Browse files
committed
Added Dockerfile to beta4 and beta5 samples
1 parent a0fa6e4 commit 81fe6dc

File tree

4 files changed

+36
-0
lines changed

4 files changed

+36
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM microsoft/aspnet:1.0.0-beta4
2+
3+
COPY project.json /app/
4+
WORKDIR /app
5+
RUN ["dnu", "restore"]
6+
COPY . /app
7+
8+
EXPOSE 5004
9+
ENTRYPOINT ["dnx", "project.json", "kestrel"]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM microsoft/aspnet:1.0.0-beta4
2+
3+
COPY project.json /app/
4+
WORKDIR /app
5+
RUN ["dnu", "restore"]
6+
COPY . /app
7+
8+
EXPOSE 5004
9+
ENTRYPOINT ["dnx", "project.json", "kestrel"]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM microsoft/aspnet:1.0.0-beta5
2+
3+
COPY project.json /app/
4+
WORKDIR /app
5+
RUN ["dnu", "restore"]
6+
COPY . /app
7+
8+
EXPOSE 5004
9+
ENTRYPOINT ["dnx", "project.json", "kestrel"]
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM microsoft/aspnet:1.0.0-beta5
2+
3+
COPY project.json /app/
4+
WORKDIR /app
5+
RUN ["dnu", "restore"]
6+
COPY . /app
7+
8+
EXPOSE 5004
9+
ENTRYPOINT ["dnx", "project.json", "kestrel"]

0 commit comments

Comments
 (0)