Skip to content

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.8.12-slim-bullseye --> base base --> source source --> prod base --> prod_install prod -. "COPY" .-> prod_install prod_install --> prod_ready prod_ready --> prod_demo prod_ready --> default prod_demo --> default_with_demo