blob: d59823551264b3548484c42ce67a0cce7cf25e0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# radsecproxy-web
#
# Generates static HTML from an ikiwiki git repo and exits.
#
FROM debian:latest
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 ikiwiki make
RUN [ -d /usr/local/src/radsecproxy-web ] || git clone https://git.nordu.net/radsecproxy-web.git /usr/local/src/radsecproxy-web
RUN cd /usr/local/src/radsecproxy-web && git pull
ADD mkhtml.sh /
ENTRYPOINT ["/mkhtml.sh"]
|