Skip to content

Instantly share code, notes, and snippets.

@merken
Last active August 24, 2017 11:38
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 merken/a88e5f3723e54091875977abe6ef4287 to your computer and use it in GitHub Desktop.
Save merken/a88e5f3723e54091875977abe6ef4287 to your computer and use it in GitHub Desktop.
Dockerfile Merken.NetCoreBuild.App
FROM microsoft/aspnetcore
# set up network
ENV ASPNETCORE_URLS http://+:5000
WORKDIR /app
EXPOSE 5000
COPY . /app
ENTRYPOINT ["dotnet", "netcoreapp.dll"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment