How can I interactively run a dotnet core console application inside of a docker container
问题 I created the following simple dotnet core console application from Visual Studio 2019. Console.WriteLine("Hello World!"); var readText = Console.ReadLine(); Console.WriteLine(readText); When I press F5, the program waits for me at Console.ReadLine till I enter some text. When I type some text and press enter, the same text is displayed to me back. Now I add docker support to this console project. I have written the step by step instructions in another so question to add the docker support.