dotnet-core/samples/dotnetbot/Dockerfile
Rich Lander 0e19a98c5f Add Dockerfile (#277)
* Add Dockerfile
- Added Dockerfile for app
- Made the app a bit shorter
- Improved app with string interpolation usage

* Add trailing CR

* Simplify string joining
2016-09-26 08:51:01 -07:00

5 lines
106 B
Docker

FROM microsoft/dotnet
COPY bin/Debug/netcoreapp1.0 app
WORKDIR app
ENTRYPOINT ["dotnet", "dotnetbot.dll"]