# ikiwiki
#
# Generates static HTML from an ikiwiki git repo.
#
FROM ubuntu:15.10
MAINTAINER Linus Nordberg
RUN apt-get update
RUN echo 'debconf debconf/frontend select noninteractive' | debconf-set-selections
RUN apt-get -y -q install unattended-upgrades
RUN apt-get -y -q install ikiwiki make
RUN git clone https://git.nordu.net/radsecproxy-web.git /usr/local/src/
VOLUME /var/www/radsecproxy
ADD start.sh /
ENTRYPOINT ["/start.sh"]