From 1af263321a6ee82fe958dd35f985f3d43124b5fa Mon Sep 17 00:00:00 2001 From: Marvin D Date: Thu, 13 Jun 2019 09:10:33 +0200 Subject: [PATCH] Add websockets dependency (#33) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6467f07..bf1fbd0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN VERSION=$(cat /tmp/VERSION) && \ chmod a+x /usr/local/bin/* && \ apk add --no-cache git build-base openssl && \ apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community leveldb-dev && \ - pip install aiohttp pylru plyvel && \ + pip install aiohttp pylru plyvel websockets && \ git clone -b $VERSION https://github.com/kyuupichan/electrumx.git && \ cd electrumx && \ python setup.py install && \