#This is my Docker file which runs on windows Container
FROM Microsoft Artifact Registry
ADD https://aka.ms/vs/17/release/vc_redist.x64.exe /vc_redist.x64.exe
RUN C:\VC_redist.x64.exe /install /quiet
ADD ./MFCDemo.exe /MFCDemo.exe
CMD C:\MFCDemo.exe
I am trying to run Demo MFC executable in the Windows docker container
I was able to create an image in the docker, but when I am executing it, there is no output or any popup.
Can you please tell me what to do?