mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
11 lines
185 B
Docker
11 lines
185 B
Docker
FROM python:3
|
|
|
|
WORKDIR /root
|
|
|
|
RUN git clone https://github.com/spesmilo/electrumx.git && \
|
|
cd electrumx && \
|
|
pip3 install . && \
|
|
mkdir db_directory
|
|
|
|
WORKDIR /root/electrumx
|