// dot -Tsvg ./cache-stack.dot > ./cache-stack.svg digraph { rankdir="LR"; nodesep=0.3; edge[minlen=0]; bgcolor="#00000000"; node [ shape=rect, width=5, height=0.4, fontname=monospace, fontsize=10 ]; from [ label = <FROM ubuntu:latest> ]; deps [ label = <RUN apt-get update && \\
apt-get install -y build-essentials> ]; copy [ label = <COPY main.c Makefile /src/> ]; workdir [ label = <WORKDIR /src/> ]; build [ label = <RUN make build> ]; from -> deps; deps -> copy; copy -> workdir; workdir -> build; }