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