lasp/Dockerfile
J.A. de Jong - Redu-Sone B.V., ASCEE V.O.F c7151d4c1b
All checks were successful
continuous-integration/drone/push Build is passing
Fix on dockerfile to not copy to html subdir
2023-01-20 11:53:22 +01:00

16 lines
353 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 rm -rf /srv//http
RUN mv doc/html /srv/http
CMD /usr/bin/lighttpd -D -f /etc/lighttpd/lighttpd.conf
EXPOSE 80