mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
14 lines
214 B
Docker
14 lines
214 B
Docker
FROM microsoft/dotnet:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY project.json .
|
|
RUN ["dotnet", "restore"]
|
|
|
|
COPY . /app
|
|
RUN ["dotnet", "build"]
|
|
|
|
EXPOSE 5000/tcp
|
|
|
|
ENTRYPOINT ["dotnet", "run", "--server.urls", "http://0.0.0.0:5000"]
|