What is a dockerfile?
like DNA, it is code that tells docker how to build an image
What is an image?
- A layered blueprint of your software along with all of its dependencies down to the operating system level.
- it's immutable and can be used to spawn multiple containers.
What is a container?
A running process that represents the actual software running in the real world.