mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-01 01:32:17 +01:00
11 lines
185 B
Text
11 lines
185 B
Text
|
FROM python:3
|
||
|
|
||
|
WORKDIR /root
|
||
|
|
||
|
RUN git clone https://github.com/spesmilo/electrumx.git && \
|
||
|
cd electrumx && \
|
||
|
pip3 install . && \
|
||
|
mkdir db_directory
|
||
|
|
||
|
WORKDIR /root/electrumx
|