From d2aef3516dea3bc081ba899066fcb6709b584ef9 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Tue, 5 Nov 2019 16:42:43 +0700 Subject: [PATCH] Get leveldb-dev from main repository (#40) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index decd1ff..b52fcea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY ./VERSION /tmp 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 && \ + apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main leveldb-dev && \ apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing rocksdb-dev && \ pip install aiohttp pylru plyvel websockets python-rocksdb && \ git clone -b $VERSION https://github.com/kyuupichan/electrumx.git && \