Remove Dockerfiles for consistency with other templates. Also fixes #694

This commit is contained in:
Steve Sanderson
2017-02-21 16:18:25 +00:00
parent 3c2fd50e8f
commit c9526dd4d2
8 changed files with 2 additions and 105 deletions

View File

@@ -1,16 +0,0 @@
FROM microsoft/dotnet:1.1.0-sdk-projectjson
RUN apt-get update
RUN wget -qO- https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get install -y build-essential nodejs
COPY . /app
WORKDIR /app
RUN ["dotnet", "restore"]
RUN ["dotnet", "build"]
EXPOSE 5000/tcp
CMD ["dotnet", "run", "--server.urls", "http://*:5000"]