Files
aspnet-core-signalr-angular/Dockerfile
2016-09-25 10:00:20 +03:00

14 lines
182 B
Docker

FROM microsoft/dotnet:latest
COPY . /app
WORKDIR /app
RUN ["dotnet", "restore"]
RUN ["dotnet", "build"]
EXPOSE 5000/tcp
CMD ["dotnet", "run", "--server.urls", "http://*:5000"]