Files
bitminer/Hashr/Dockerfile
Tommy Parnell 414395b87d init
2017-01-11 21:29:12 -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"]