Process Flow - Building images with docker build
Write Dockerfile
Run 'docker build'
Docker reads Dockerfile
Execute each instruction step-by-step
Create image layers
Tag image with name:tag
Image ready to use
This flow shows how Docker reads your Dockerfile, executes each instruction to create layers, and builds a final image tagged for use.