Add dockerfile to build documentation
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Anne de Jong 2023-01-20 11:23:46 +01:00
parent 7c27cbe8c8
commit 75d7b02e86
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -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