summaryrefslogtreecommitdiff
path: root/packaging/docker/Dockerfile
blob: da07384dee94956ad9949825898d2014acd9edbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# lighttpd + ikiwiki
FROM ubuntu:14.04
MAINTAINER Linus Nordberg <linus@nordu.net>

RUN apt-get update
RUN echo 'debconf debconf/frontend select noninteractive' | debconf-set-selections
RUN apt-get -y -q install lighttpd ikiwiki make

EXPOSE 80
EXPOSE 443
VOLUME /etc/lighttpd
ADD start.sh /
ENTRYPOINT ["/start.sh"]