Files
aka.terribledev.io/Dockerfile
Tommy Parnell e6be4997e4 init
2017-02-21 23:14:41 -05: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"]