summaryrefslogtreecommitdiff
path: root/nlnet/task5/long-poll/Dockerfile
blob: 713e47ef61da9195e863beb93fd9bc5e5748f129 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 libgnunet0.19

# Installation
RUN git clone git://git.taler.net/libeufin
WORKDIR /libeufin
RUN git fetch && git checkout 934a73b09b9e9abba348e15ddc058df5bb9cd6a3
RUN ./bootstrap
RUN ./configure --prefix=/usr/local
RUN make install
COPY start.sh /
ENTRYPOINT ["/start.sh"]