aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/cpp-ethereum/eth_trusty.docker
blob: 0c4d7a02cda70ab3995516093688b510ec6fd8f6 (plain) (blame)
1
2
3
4
5
6
7
FROM ubuntu:trusty

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