From 4fb53e3e772fe3b39aa793cdaf8ae802936b3547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Constantino?= <53014990+pedrocns@users.noreply.github.com> Date: Fri, 4 Oct 2019 14:55:31 -0300 Subject: [PATCH] Replaced cpp-ethereum for aleth Replaced cpp-ethereum for aleth --- scripts/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/Dockerfile b/scripts/Dockerfile index eed9c8edc8b..23672fa6c77 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -1,5 +1,5 @@ # For running this container as non-root user, see -# https://github.com/ethereum/cpp-ethereum/blob/develop/scripts/docker-eth +# https://github.com/ethereum/aleth/blob/develop/scripts/docker-eth # or call `docker run` like this: # ## mkdir -p ~/.ethereum ~/.web3 @@ -22,13 +22,13 @@ RUN apk add --no-cache \ linux-headers \ leveldb-dev --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \ && sed -i -E -e 's|#warning|//#warning|' /usr/include/sys/poll.h \ - && git clone --recursive https://github.com/ethereum/cpp-ethereum --branch develop --single-branch --depth 1 \ + && git clone --recursive https://github.com/ethereum/aleth --branch develop --single-branch --depth 1 \ && mkdir /build && cd /build \ - && cmake /cpp-ethereum -DCMAKE_BUILD_TYPE=RelWithDebInfo -DTOOLS=Off -DTESTS=Off \ + && cmake /aleth -DCMAKE_BUILD_TYPE=RelWithDebInfo -DTOOLS=Off -DTESTS=Off \ && make eth \ && make install \ && cd / && rm /build -rf \ - && rm /cpp-ethereum -rf \ + && rm /aleth -rf \ && apk del .build-deps \ && rm /var/cache/apk/* -f