summaryrefslogtreecommitdiff
path: root/packaging/docker-alpine/taler-exchange-builder.Containerfile
blob: 329116f527608c59ee5fc47364126d61d31607aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM taler-alpine-imaging/libgnunet:builder

WORKDIR /builder
RUN git clone https://git.taler.net/exchange.git exchange --recursive -j 8
WORKDIR /builder/exchange
RUN apk add pandoc recutils py3-jinja2 jq
RUN ./bootstrap
RUN ./configure \
		--prefix=/prefix/usr \
		--sysconfdir=/prefix/etc \
		--mandir=/prefix/usr/share/man \
		--localstatedir=/prefix/var \
		--with-microhttpd=/prefix/usr \
		--enable-logging=verbose

RUN make -j
RUN make install

LABEL org.opencontainers.image.title="Taler Exchange: Builder"
LABEL org.opencontainers.image.description="An alpine-based image containing the libraries from the Taler Exchange"
LABEL org.opencontainers.image.source="https://git.taler.net/deployment.git/tree/packaging/docker-alpine/taler-exchange-builder.Containerfile"
LABEL org.opencontainers.image.authors="Nullptrderef <nullptrderef@proton.me>"