Process Flow - Combining RUN commands
Start Dockerfile
RUN command 1
RUN command 2
RUN command 3
Single image layer created
Next Dockerfile instruction
Docker executes combined RUN commands in one layer by chaining them with && or \ to reduce image layers.