From a6e51f901312b80cdb19c349a172cec638ea050e Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 12 Oct 2024 12:36:46 +0300 Subject: [PATCH] Fix Electrum installation in Dockerfile.ci (#1095) Following https://github.com/spesmilo/electrum/commit/581082d5bb678307ee05bf0616b1993d86a5ecb3. --- Dockerfile.ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index f10d9a5..18806c7 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -40,7 +40,7 @@ WORKDIR /build/ RUN apt-get install -qqy git libsecp256k1-1 python3-cryptography python3-setuptools python3-venv python3-pip jq curl RUN git clone --recurse-submodules https://github.com/spesmilo/electrum/ && cd electrum/ && git log -1 RUN python3 -m venv --system-site-packages venv && \ - venv/bin/pip install -e electrum/ && \ + ELECTRUM_ECC_DONT_COMPILE=1 venv/bin/pip install -e electrum/ && \ ln /build/venv/bin/electrum /usr/bin/electrum RUN electrum version --offline