blob: 4300b5e3cd163760a3854d7daffa9e90fd1fe788 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Catlfish expects to find its configuration in
# /usr/local/etc/catlfish/catlfish.config so mounting
# /usr/local/etc/catlfish is recommended. This can be done using the
# `-v' flag to `docker run'. Example:
# $ docker run -v /etc/catlfish:/usr/local/etc/catlfish catlfish
FROM erlang
RUN apt-get update
RUN echo 'debconf debconf/frontend select noninteractive' | debconf-set-selections
RUN apt-get -y -q install gcc git make
WORKDIR /usr/local/src
RUN curl https://www.ct.nordu.net/dist/mochiweb-v2.12.2.tar.gz | tar xf -
RUN make -C mochiweb
RUN curl https://www.ct.nordu.net/dist/lager-2.1.1.tar.gz | tar xf -
RUN make -C lager
RUN curl https://www.ct.nordu.net/dist/hackney-1.1.0.tar.gz | tar xf -
RUN make -C hackney REBAR=../lager/rebar
RUN git clone https://git.nordu.net/plop.git
RUN make -C plop
RUN git clone https://git.nordu.net/catlfish.git
RUN make -C catlfish all
RUN make -C catlfish PREFIX=/usr/local/catlfish release
VOLUME /usr/local/catlfish
VOLUME /var/local/db/catlfish
ADD supervisord.conf /etc/supervisor/
WORKDIR /usr/local/etc/catlfish
|