Docker windows container with python setup, dotnet framework and C++ setup

I have C# console application which invokes python.exe as process. which intern uses the C++ dlls to do some processing.Once python application completed. The C# console application update the status. So, is it possible to have these environments in one windows container.

If you know how to install Python and C++ from terminal non-interctively, then yes.

I would start here:

I guess you can choose “Nano-server” or “Windows server core”. Then you create a Dockerfile and use (probably) Powershell syntax to .write a script to install the missing components and build an image from that Dockerfile.

I would need to Google how it is done on Windows, so I hope I can leave it to you, but feel free to ask back if you didn’t understand something.

1 Like