mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 09:17:47 +00:00
14 lines
182 B
Docker
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"]
|