lasp/Dockerfile
J.A. de Jong - ASCEE 75d7b02e86
All checks were successful
continuous-integration/drone/push Build is passing
Add dockerfile to build documentation
2023-01-20 11:23:46 +01:00

13 lines
274 B
Docker

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