Advertisement
Guest User

Asp.net Core 2 dockerfile

a guest
Sep 27th, 2017
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. FROM microsoft/aspnetcore:2.0
  2. ARG source
  3. WORKDIR /app
  4. EXPOSE 5000
  5. COPY ${source:-obj/Docker/publish} .
  6. ENTRYPOINT ["dotnet", "Microservice.Gateway.dll"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement