summaryrefslogtreecommitdiff
path: root/nlnet/task3/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'nlnet/task3/Dockerfile')
-rw-r--r--nlnet/task3/Dockerfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/nlnet/task3/Dockerfile b/nlnet/task3/Dockerfile
new file mode 100644
index 0000000..52e7978
--- /dev/null
+++ b/nlnet/task3/Dockerfile
@@ -0,0 +1,15 @@
+FROM debian:stable
+
+RUN apt-get update
+RUN apt-get install -y openjdk-17-jre git python3-pip curl jq sqlite3 postgresql python3-requests python3-click sudo
+
+# Installation
+RUN git clone git://git.taler.net/libeufin
+WORKDIR /libeufin
+RUN git fetch && git checkout 4bc5f38f571a45d427f73813ec3846bf59413afa
+RUN ./bootstrap
+RUN ./configure --prefix=/usr/local
+RUN make install
+COPY keys.sh /
+COPY start.sh /
+ENTRYPOINT ["/start.sh"]