Force non-git bootstrap env for exchange/merchant tarballs
This commit is contained in:
parent
363060ee82
commit
afe3090506
1 changed files with 2 additions and 2 deletions
|
|
@ -85,7 +85,7 @@ RUN set -e; \
|
||||||
git clone --depth 1 --branch "${EXCHANGE_REF}" https://git.taler.net/exchange.git /src/exchange; \
|
git clone --depth 1 --branch "${EXCHANGE_REF}" https://git.taler.net/exchange.git /src/exchange; \
|
||||||
EXCHANGE_DIR="/src/exchange"; \
|
EXCHANGE_DIR="/src/exchange"; \
|
||||||
fi; \
|
fi; \
|
||||||
cd "${EXCHANGE_DIR}" && env GNUNET_PREFIX=/usr ./bootstrap && \
|
cd "${EXCHANGE_DIR}" && env GNUNET_PREFIX=/usr GIT_CONFIG_NOSYSTEM=1 GIT_DIR= GIT_WORK_TREE=. ./bootstrap && \
|
||||||
./configure --prefix=/usr && make -j$(nproc) && make install; \
|
./configure --prefix=/usr && make -j$(nproc) && make install; \
|
||||||
# Merchant
|
# Merchant
|
||||||
MERCHANT_DIR=""; \
|
MERCHANT_DIR=""; \
|
||||||
|
|
@ -106,7 +106,7 @@ RUN set -e; \
|
||||||
git clone --depth 1 --branch "${MERCHANT_REF}" https://git.taler.net/merchant.git /src/merchant; \
|
git clone --depth 1 --branch "${MERCHANT_REF}" https://git.taler.net/merchant.git /src/merchant; \
|
||||||
MERCHANT_DIR="/src/merchant"; \
|
MERCHANT_DIR="/src/merchant"; \
|
||||||
fi; \
|
fi; \
|
||||||
cd "${MERCHANT_DIR}" && env GNUNET_PREFIX=/usr ./bootstrap && \
|
cd "${MERCHANT_DIR}" && env GNUNET_PREFIX=/usr GIT_CONFIG_NOSYSTEM=1 GIT_DIR= GIT_WORK_TREE=. ./bootstrap && \
|
||||||
./configure --prefix=/usr && make -j$(nproc) && make install
|
./configure --prefix=/usr && make -j$(nproc) && make install
|
||||||
|
|
||||||
# LibEuFin (Bank)
|
# LibEuFin (Bank)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue