2016-10-06 20:09:44 -07:00
|
|
|
FROM microsoft/aspnetcore:1.0.1
|
2016-09-07 17:15:13 -07:00
|
|
|
|
2016-10-07 14:15:03 -07:00
|
|
|
# Entry point through the copied assembly
|
|
|
|
ENTRYPOINT ["dotnet", "Ordering.API.dll"]
|
|
|
|
ARG source=.
|
2016-09-07 17:15:13 -07:00
|
|
|
WORKDIR /app
|
2016-09-14 21:37:48 -07:00
|
|
|
EXPOSE 80
|
2016-10-07 14:15:03 -07:00
|
|
|
COPY $source .
|