summaryrefslogtreecommitdiff
path: root/packaging/docker/Dockerfile
blob: 5fd39931a3c9196020c280942e37e82cae412bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# ikiwiki
#
# Generates static HTML from an ikiwiki git repo.
#

FROM web_software_ndn
MAINTAINER Linus Nordberg <linus+radsecproxy@nordu.net>

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"]