2017-01-30 15:46:43 +01:00
|
|
|
FROM microsoft/aspnetcore:1.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-12-12 10:15:24 +01:00
|
|
|
ENV ASPNETCORE_URLS http://*:5102
|
2016-10-07 14:15:03 -07:00
|
|
|
COPY $source .
|