Skip to content

Instantly share code, notes, and snippets.

@geykel
Created June 7, 2016 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geykel/abafd045fe5118c4034810282ebd07c3 to your computer and use it in GitHub Desktop.
Save geykel/abafd045fe5118c4034810282ebd07c3 to your computer and use it in GitHub Desktop.
FROM microsoft/dotnet
COPY . /app
WORKDIR /app
RUN ["dotnet", "restore"]
RUN ["dotnet", "build"]
EXPOSE 5000/tcp
ENTRYPOINT ["dotnet", "run"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment