Make a python script that creates docker images and runs containers for development, test, and production builds. You'll want to check out the os and subprocess modules for executing shell commands from a script. Also, make sure that the script is platform independent. The same command line arguments that work for unix should also run on windows.
Make a python script that creates docker images and runs containers for development, test, and production builds. You'll want to check out the
os
andsubprocess
modules for executing shell commands from a script. Also, make sure that the script is platform independent. The same command line arguments that work for unix should also run on windows.