openethereum/docker/ubuntu/Dockerfile

41 lines
856 B
Docker
Raw Normal View History

2016-02-01 12:35:52 +01:00
FROM ubuntu:14.04
WORKDIR /build
2016-02-01 12:35:52 +01:00
# install tools and dependencies
RUN apt-get update && \
apt-get install -y \
g++ \
build-essential \
curl \
git \
file \
binutils
2016-02-01 12:35:52 +01:00
2016-06-20 11:02:31 +02:00
# install rustup
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
2016-02-01 12:35:52 +01:00
2016-06-20 11:02:31 +02:00
# rustup directory
ENV PATH /root/.cargo/bin:$PATH
2016-02-01 12:35:52 +01:00
# show backtraces
ENV RUST_BACKTRACE 1
# show tools
RUN rustc -vV && \
cargo -V && \
gcc -v &&\
g++ -v
2016-02-01 12:35:52 +01:00
# build parity
RUN git clone https://github.com/ethcore/parity && \
cd parity && \
2016-06-30 22:29:45 +02:00
git checkout beta && \
2016-06-30 22:07:22 +02:00
git pull && \
cargo build --release --verbose && \
2016-06-30 22:07:22 +02:00
ls /build/parity/target/release/parity && \
strip /build/parity/target/release/parity
RUN file /build/parity/target/release/parity
EXPOSE 8080 8545 8180
ENTRYPOINT ["/build/parity/target/release/parity"]