Skip to content
Advertisement

Tag: virtual-machine

How to create a virtual machine programmatically?

I’m trying to find a way to run .exe application in python (I mean making virtual box where you can run .exe programs). And when you run the application its will only affect the folder where python script is. Answer Dockerfile main.py Build docker build -t isolatedExe:latest . Run docker run isolatedExe:latest Next interact with the container by using docker

Advertisement