I would like to display a basic windows application (an exe file) using Docker in windows server core container. Manage to display it on my host machine when running it from the command prompt. However, when I tried it using windows server core container, the application didn't appear. Is the reason due to missing dll? Thank you very much for your help.
Expected output to be displayed Output displayed
FROM mcr.microsoft.com/windows/servercore
WORKDIR /myapp
COPY MyWinApp.exe /myapp
ENTRYPOINT [ "CMD" ]