'C# .Net 6.0 App's Console.WriteLine not output to /bin/bash on Linux

I'm running into trouble with the following steps:

  1. Create a simple C# .net 6 console app with the Hello World boilerplate, and publish the portable binaries locally.
  2. Create a docker container based on mcr.microsoft.com/dotnet/sdk:6.0
  3. Copy the publish results to the container in a consoleapp directory.
  4. Open an interactive session to the container
  5. Execute /consoleapp/ConsoleApp1.exe

No error, but no result. Here's the (only) code in the app:

Console.WriteLine("Hello, World!");

I'm expecting to see:

Hello, World!

I feel like I'm missing something incredibly simple...any help would be appreciated.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source