mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
10 lines
185 B
Docker
10 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
|