summaryrefslogtreecommitdiff
path: root/packaging/docker/Dockerfile
blob: dbd2f372f27ac8a514b0e06e5196e5d7bd6f2ce4 (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 ubuntu:15.10
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"]