101MB Docker image to convert
*.dot
to*.png
without installing tons of dependencies
$ cat file.dot | docker container run --rm -i vladgolubev/dot2png > file.png
What does it mean?
It can turn this:
digraph {
rankdir=LR;
a -> b -> c;
b -> d;
}
into this: