Add ElectrumX Dockerfile

This commit is contained in:
Alva Swanson 2023-12-30 07:54:52 +01:00
parent 8451d7d6b1
commit eb75c398d4
No known key found for this signature in database
GPG Key ID: 004760E77F753090

View File

@ -0,0 +1,10 @@
FROM python:3
WORKDIR /root
RUN git clone https://github.com/spesmilo/electrumx.git && \
cd electrumx && \
pip3 install . && \
mkdir db_directory
WORKDIR /root/electrumx