jtoomim / p2pool

Peer-to-peer Bitcoin mining pool
https://github.com/jtoomim/p2pool/
GNU General Public License v3.0
37 stars 45 forks source link

ltc_scrypt is not available in docker build #53

Open nickbreen opened 3 years ago

nickbreen commented 3 years ago

Just needs the pypy setup run

ltc_scrypt.patch.txt

nickbreen commented 3 years ago
diff --git a/Dockerfile b/Dockerfile
index 6cd35e6..24f590d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -36,4 +36,7 @@ RUN apt-get update \
 COPY . $P2POOL_HOME

 WORKDIR $P2POOL_HOME
+
+RUN cd litecoin_scrypt && pypy setup.py install
+
 ENTRYPOINT ["pypy", "run_p2pool.py"]