Skip to content

Instantly share code, notes, and snippets.

@riccardone
Created August 25, 2020 08:41
Show Gist options
  • Select an option

  • Save riccardone/ee52006df1c03145ca46d305a11b4ee9 to your computer and use it in GitHub Desktop.

Select an option

Save riccardone/ee52006df1c03145ca46d305a11b4ee9 to your computer and use it in GitHub Desktop.
Dockerfile for .Net Core 3.1 Console App
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1
COPY bin/Release/netcoreapp3.1 App/
WORKDIR /App
ENTRYPOINT ["dotnet", "yourprogramname.dll"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment