Created
August 25, 2020 08:41
-
-
Save riccardone/ee52006df1c03145ca46d305a11b4ee9 to your computer and use it in GitHub Desktop.
Dockerfile for .Net Core 3.1 Console App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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