https://www.youtube.com/watch?v=EYNwNlOrpr0&list=PL3MmuxUbc_hJed7dXYoJw8DoCuVHhGEQb&index=5
Why should we care about docker?
docker run hello-world
docker run -it ubuntu bash
// run - run this image
// -it - do it in interactive mode, i.e. terminal
// ubuntu - name of the image it will run
// bash - parameter that we want to execute in this image
docker run -it --entrypoint=bash python:3.9