mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
17 lines
322 B
Docker
17 lines
322 B
Docker
FROM microsoft/dotnet:1.1.0-sdk-projectjson
|
|
|
|
RUN apt-get update
|
|
RUN wget -qO- https://deb.nodesource.com/setup_6.x | bash -
|
|
RUN apt-get install -y build-essential nodejs
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN ["dotnet", "restore"]
|
|
RUN ["dotnet", "build"]
|
|
|
|
EXPOSE 5000/tcp
|
|
|
|
CMD ["dotnet", "run", "--server.urls", "http://*:5000"]
|