2023-01-20 10:23:46 +00:00
|
|
|
FROM archlinux
|
|
|
|
MAINTAINER J.A. de Jong - j.a.dejong@ascee.nl
|
|
|
|
RUN pacman --noconfirm -Sy
|
2023-01-20 13:22:48 +00:00
|
|
|
RUN pacman --noconfirm -S git doxygen graphviz lighttpd python-pip
|
|
|
|
RUN pip install doxypypy
|
2023-01-20 10:23:46 +00:00
|
|
|
WORKDIR /root
|
|
|
|
RUN git clone https://code.ascee.nl/ascee/lasp
|
|
|
|
WORKDIR /root/lasp
|
|
|
|
RUN doxygen
|
2023-01-20 10:53:22 +00:00
|
|
|
RUN rm -rf /srv//http
|
2023-01-20 10:23:46 +00:00
|
|
|
RUN mv doc/html /srv/http
|
2023-01-20 10:40:06 +00:00
|
|
|
CMD /usr/bin/lighttpd -D -f /etc/lighttpd/lighttpd.conf
|
|
|
|
|
2023-01-20 10:23:46 +00:00
|
|
|
EXPOSE 80
|
|
|
|
|
|
|
|
|