summaryrefslogtreecommitdiff
path: root/historic/docker/exchange/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'historic/docker/exchange/Dockerfile')
-rw-r--r--historic/docker/exchange/Dockerfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/historic/docker/exchange/Dockerfile b/historic/docker/exchange/Dockerfile
new file mode 100644
index 0000000..d56754c
--- /dev/null
+++ b/historic/docker/exchange/Dockerfile
@@ -0,0 +1,17 @@
+FROM taler/base
+
+RUN git clone git://taler.net/exchange ~/exchange
+
+WORKDIR $HOME/exchange
+
+RUN ./bootstrap \
+ && ./configure CFLAGS='-ggdb -O0' \
+ --with-libgnurl=/usr/local \
+ --with-microhttpd=/usr/local \
+ --with-gnunet=/usr/local \
+ && make \
+ && make install
+
+COPY ./entry_point.sh /
+
+ENTRYPOINT ["/entry_point.sh"]