Build Docker Container Image for .NET Libraries - CloudCommandos/JohnChan GitHub Wiki
.NET Core
Dockerfile
FROM microsoft\aspnetcore:1.1.0
ARG source
WORKDIR /app
EXPOSE 80
COPY ${source:-bin/Release/PublishOutput} .
ENTRYPOINT ["dotnet", "YourService.dll"]