Process Flow - Copying from build stage to final stage
Start: Multi-stage Dockerfile
Build Stage: Compile or build app
Copy artifacts from build stage
Final Stage: Use copied artifacts
Build final image
Run container with final image
This flow shows how Docker builds an image in stages, copying files from the build stage to the final stage to keep the final image small.