Process Flow - Why Dockerfiles automate image creation
Write Dockerfile
Run docker build
Docker reads Dockerfile line by line
Execute each instruction
Create image layers
Combine layers into final image
Image ready to run containers
Docker reads the Dockerfile step-by-step, executes each instruction to build layers, and combines them into a final image automatically.