commit
ffbc6f51cb
@ -8,7 +8,7 @@ RUN apt-get update && \
|
|||||||
# add-apt-repository
|
# add-apt-repository
|
||||||
software-properties-common \
|
software-properties-common \
|
||||||
curl \
|
curl \
|
||||||
gcc \
|
g++ \
|
||||||
wget \
|
wget \
|
||||||
git \
|
git \
|
||||||
# evmjit dependencies
|
# evmjit dependencies
|
||||||
@ -18,9 +18,8 @@ RUN apt-get update && \
|
|||||||
# cmake, llvm and rocksdb ppas. then update ppas
|
# cmake, llvm and rocksdb ppas. then update ppas
|
||||||
RUN add-apt-repository -y "ppa:george-edison55/cmake-3.x" && \
|
RUN add-apt-repository -y "ppa:george-edison55/cmake-3.x" && \
|
||||||
add-apt-repository "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.7 main" && \
|
add-apt-repository "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.7 main" && \
|
||||||
add-apt-repository "deb http://ppa.launchpad.net/giskou/librocksdb/ubuntu trusty main" && \
|
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y --force-yes cmake llvm-3.7-dev librocksdb
|
apt-get install -y --force-yes cmake llvm-3.7-dev
|
||||||
|
|
||||||
# install evmjit
|
# install evmjit
|
||||||
RUN git clone https://github.com/debris/evmjit && \
|
RUN git clone https://github.com/debris/evmjit && \
|
||||||
@ -31,9 +30,6 @@ RUN git clone https://github.com/debris/evmjit && \
|
|||||||
# install multirust
|
# install multirust
|
||||||
RUN curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
|
RUN curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
|
||||||
|
|
||||||
# install nightly and make it default
|
|
||||||
RUN multirust update nightly && multirust default nightly
|
|
||||||
|
|
||||||
# export rust LIBRARY_PATH
|
# export rust LIBRARY_PATH
|
||||||
ENV LIBRARY_PATH /usr/local/lib
|
ENV LIBRARY_PATH /usr/local/lib
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ RUN apt-get update && \
|
|||||||
curl \
|
curl \
|
||||||
wget \
|
wget \
|
||||||
git \
|
git \
|
||||||
gcc \
|
g++ \
|
||||||
# evmjit dependencies
|
# evmjit dependencies
|
||||||
zlib1g-dev \
|
zlib1g-dev \
|
||||||
libedit-dev
|
libedit-dev
|
||||||
@ -18,9 +18,8 @@ RUN apt-get update && \
|
|||||||
# cmake, llvm and rocksdb ppas. then update ppas
|
# cmake, llvm and rocksdb ppas. then update ppas
|
||||||
RUN add-apt-repository -y "ppa:george-edison55/cmake-3.x" && \
|
RUN add-apt-repository -y "ppa:george-edison55/cmake-3.x" && \
|
||||||
add-apt-repository "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.7 main" && \
|
add-apt-repository "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.7 main" && \
|
||||||
add-apt-repository "deb http://ppa.launchpad.net/giskou/librocksdb/ubuntu trusty main" && \
|
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y --force-yes cmake llvm-3.7-dev librocksdb
|
apt-get install -y --force-yes cmake llvm-3.7-dev
|
||||||
|
|
||||||
# install evmjit
|
# install evmjit
|
||||||
RUN git clone https://github.com/debris/evmjit && \
|
RUN git clone https://github.com/debris/evmjit && \
|
||||||
@ -31,9 +30,6 @@ RUN git clone https://github.com/debris/evmjit && \
|
|||||||
# install multirust
|
# install multirust
|
||||||
RUN curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
|
RUN curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
|
||||||
|
|
||||||
# install nightly and make it default
|
|
||||||
RUN multirust update nightly && multirust default nightly
|
|
||||||
|
|
||||||
# export rust LIBRARY_PATH
|
# export rust LIBRARY_PATH
|
||||||
ENV LIBRARY_PATH /usr/local/lib
|
ENV LIBRARY_PATH /usr/local/lib
|
||||||
|
|
||||||
@ -41,7 +37,6 @@ ENV LIBRARY_PATH /usr/local/lib
|
|||||||
ENV RUST_BACKTRACE 1
|
ENV RUST_BACKTRACE 1
|
||||||
|
|
||||||
# build parity
|
# build parity
|
||||||
# TODO: add jit feature
|
|
||||||
RUN git clone https://github.com/ethcore/parity && \
|
RUN git clone https://github.com/ethcore/parity && \
|
||||||
cd parity && \
|
cd parity && \
|
||||||
cargo install --features rpc
|
cargo build --release --features ethcore/jit
|
||||||
|
@ -3,23 +3,14 @@ FROM ubuntu:14.04
|
|||||||
# install tools and dependencies
|
# install tools and dependencies
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
gcc \
|
g++ \
|
||||||
curl \
|
curl \
|
||||||
git \
|
git \
|
||||||
# add-apt-repository
|
make
|
||||||
software-properties-common
|
|
||||||
|
|
||||||
# rocksdb ppas. then update ppas
|
|
||||||
RUN add-apt-repository "deb http://ppa.launchpad.net/giskou/librocksdb/ubuntu trusty main" && \
|
|
||||||
apt-get update && \
|
|
||||||
apt-get install -y --force-yes librocksdb
|
|
||||||
|
|
||||||
# install multirust
|
# install multirust
|
||||||
RUN curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
|
RUN curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
|
||||||
|
|
||||||
# install nightly and make it default
|
|
||||||
RUN multirust update nightly && multirust default nightly
|
|
||||||
|
|
||||||
# export rust LIBRARY_PATH
|
# export rust LIBRARY_PATH
|
||||||
ENV LIBRARY_PATH /usr/local/lib
|
ENV LIBRARY_PATH /usr/local/lib
|
||||||
|
|
||||||
@ -29,4 +20,4 @@ ENV RUST_BACKTRACE 1
|
|||||||
# build parity
|
# build parity
|
||||||
RUN git clone https://github.com/ethcore/parity && \
|
RUN git clone https://github.com/ethcore/parity && \
|
||||||
cd parity && \
|
cd parity && \
|
||||||
cargo install --features rpc
|
cargo build --release
|
||||||
|
Loading…
Reference in New Issue
Block a user