summaryrefslogtreecommitdiff
path: root/docker/taler-full/Dockerfile
blob: cfb529d407671f0970d30aae1e63f3d9f2285e46 (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
36
37
38
FROM fldold/gnunet

ENV PREFIX=/usr

RUN apt-get update && apt-get install -y \
  python3-pip \
  \
  && \
  rm -rf /var/lib/apt/lists/*

#
# Build exchange
#
RUN mkdir /build && cd /build && \
  git clone git://taler.net/exchange.git && \
  cd exchange && \
  ./bootstrap && ./configure --prefix=$PREFIX && make && make install && \
  rm -rf /build

#
# Build merchant
#
RUN mkdir /build && cd /build && \
  git clone git://taler.net/merchant.git && \
  cd merchant && \
  ./bootstrap && ./configure --prefix=$PREFIX && make && make install && \
  rm -rf /build

RUN pip3 install -U pip

#
# Build bank
#
RUN mkdir /build && cd /build && \
  git clone git://taler.net/bank.git && \
  cd bank && \
  ./bootstrap && ./configure --prefix=$PREFIX && make && make install && \
  rm -rf /build