openethereum/docker/ubuntu-dev/Dockerfile

38 lines
908 B
Docker
Raw Normal View History

2016-01-20 16:23:13 +01:00
FROM ubuntu:14.04
# install tools and dependencies
RUN apt-get update && \
apt-get install -y \
# make
build-essential \
# add-apt-repository
software-properties-common \
curl \
2016-02-08 19:58:19 +01:00
gcc \
2016-03-14 17:53:08 +01:00
wget \
2016-01-20 16:23:13 +01:00
git \
# evmjit dependencies
zlib1g-dev \
libedit-dev
# cmake, llvm and rocksdb ppas. then update ppas
2016-01-20 16:23:13 +01:00
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" && \
apt-get update && \
2016-03-14 17:53:08 +01:00
apt-get install -y --force-yes cmake llvm-3.7-dev
2016-01-20 16:23:13 +01:00
# install evmjit
RUN git clone https://github.com/debris/evmjit && \
cd evmjit && \
mkdir build && cd build && \
cmake .. && make && make install && cd
# install multirust
RUN curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
# export rust LIBRARY_PATH
ENV LIBRARY_PATH /usr/local/lib
# show backtraces
ENV RUST_BACKTRACE 1