Add Dockerfile for sequence diagram generation

This commit is contained in:
Joe Beda
2015-01-26 13:50:26 -08:00
parent b6e345c3c9
commit fab7636aa6
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM debian:jessie
RUN apt-get update
RUN apt-get -qy install python-seqdiag make curl
WORKDIR /diagrams
RUN curl -sLo DroidSansMono.ttf https://googlefontdirectory.googlecode.com/hg/apache/droidsansmono/DroidSansMono.ttf
ADD . /diagrams
CMD bash -c 'make >/dev/stderr && tar cf - *.png'