Remove plyvel dependency.

I can't get it to run under docker in windows.
This commit is contained in:
tecnovert
2019-07-18 19:53:23 +02:00
parent 6c0d82abe6
commit a49be16f9c
4 changed files with 83 additions and 42 deletions

View File

@@ -20,11 +20,13 @@ RUN PARTICL_VERSION=0.18.0.12 PARTICL_VERSION_TAG= PARTICL_ARCH=x86_64-linux-gnu
mkdir -p ${LITECOIN_BINDIR}; \
tar -xvf litecoin-0.17.1-x86_64-linux-gnu.tar.gz -C ${LITECOIN_BINDIR} --strip-components 2 litecoin-0.17.1/bin/litecoind litecoin-0.17.1/bin/litecoin-cli
# Change to git clone
COPY . /opt/basicswap
RUN ls /opt/basicswap; \
cd /opt/basicswap; \
# TODO: move coindata dir out of src dir
#COPY . /opt/basicswap
#RUN ls /opt/basicswap; \
# cd /opt/basicswap; \
RUN wget -O bs.zip https://github.com/tecnovert/basicswap/archive/master.zip; \
unzip bs.zip; \
cd basicswap-master; \
protoc -I=basicswap --python_out=basicswap basicswap/messages.proto; \
pip3 install .;