Adding a new dotnet environment, supporting dotnet core 2.0. Project structure changed. Project.json was abandoned. Project.csproj is now used.
9 lines
135 B
Docker
9 lines
135 B
Docker
FROM microsoft/dotnet:2.0-runtime
|
|
|
|
WORKDIR /fission-workdir
|
|
COPY out .
|
|
EXPOSE 8888
|
|
|
|
ENTRYPOINT ["dotnet"]
|
|
|
|
CMD ["fission-dotnet20.dll"] |