Add scripts to build the eth binary via docker.

This commit is contained in:
chriseth
2018-04-04 12:26:34 +02:00
parent c63efebd45
commit fa92380af0
3 changed files with 31 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM ubuntu:artful
RUN apt update
RUN apt -y install libleveldb-dev cmake g++ git
RUN git clone --recursive https://github.com/ethereum/cpp-ethereum --branch develop --single-branch --depth 1
RUN mkdir /build && cd /build && cmake /cpp-ethereum -DCMAKE_BUILD_TYPE=RelWithDebInfo -DTOOLS=Off -DTESTS=Off
RUN cd /build && make eth