diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ea3220e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM archlinux +MAINTAINER J.A. de Jong - j.a.dejong@ascee.nl +RUN pacman --noconfirm -Sy +RUN pacman --noconfirm -S git doxygen graphviz lighttpd +WORKDIR /root +RUN git clone https://code.ascee.nl/ascee/lasp +WORKDIR /root/lasp +RUN doxygen +RUN mv doc/html /srv/http +EXPOSE 80 + +