Docker
Docker Build Process DAG
docker build possible execution paths.
Flow Chart, of how exection navigates docker stages (see --target of docker build).
If you run docker build . the target used by default is the default_with_demo Stage in the Graph.
Dockerfile: ./Dockerfile
Dockerfile Flow Chart
Dockerfile: Dockerfile
graph TB;
python:3.9.16-slim-bullseye --> builder
python:3.9.16-slim-bullseye --> install
builder -. "requirements.txt" .-> install