Add project files.

This commit is contained in:
2017-02-02 01:31:36 +02:00
parent f6b08f01f2
commit e403fd51c4
275 changed files with 30026 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
FROM microsoft/dotnet:1.1.0-sdk-projectjson
RUN apt-get update
RUN wget -qO- https://deb.nodesource.com/setup_4.x | bash -
RUN apt-get install -y build-essential nodejs
COPY . /app
WORKDIR /app/src/LanBackup.WebApp
RUN ["dotnet", "restore"]
WORKDIR /app/src/LanBackup.DataCore
RUN ["dotnet", "restore"]
WORKDIR /app/src/LanBackup.ModelsCore
RUN ["dotnet", "restore"]
WORKDIR /app/src/LanBackup.WebApp
RUN ["dotnet", "build"]
EXPOSE 5000/tcp
CMD ["dotnet", "run", "--server.urls", "http://*:5000"]