Fission dotnet 2.0 env (#337)

Adding a new dotnet environment, supporting dotnet core 2.0.

Project structure changed. Project.json was abandoned. Project.csproj is now used.
This commit is contained in:
João Almeida
2017-09-21 11:30:15 -07:00
committed by Soam Vasani
parent dc1ffa859d
commit 7bd3f20ad6
15 changed files with 751 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM microsoft/dotnet:2.0-runtime
WORKDIR /fission-workdir
COPY out .
EXPOSE 8888
ENTRYPOINT ["dotnet"]
CMD ["fission-dotnet20.dll"]