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

Dockerfile « HelloMvc « 1.0.0-rc1-update1 « samples - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09178475dc50e98ca479e35a49de5f9142b38c1e (plain)
1
2
3
4
5
6
7
8
FROM microsoft/aspnet:1.0.0-rc1-update1

COPY . /app/
WORKDIR /app
RUN ["dnu", "restore"]

EXPOSE 5004
ENTRYPOINT ["dnx", "-p", "project.json", "web"]