92f5aa7e10
* docker builds current branch instead of cloning the repo * moved ADD command right before RUN cd parity in Dockerfiles * update docker/README.md * removed --no-cache from docker/README.md
43 lines
831 B
Docker
43 lines
831 B
Docker
FROM ubuntu:14.04
|
|
WORKDIR /build
|
|
|
|
# install tools and dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -y \
|
|
g++ \
|
|
build-essential \
|
|
curl \
|
|
git \
|
|
file \
|
|
binutils \
|
|
libssl-dev \
|
|
pkg-config \
|
|
libudev-dev
|
|
|
|
# install rustup
|
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
|
|
# rustup directory
|
|
ENV PATH /root/.cargo/bin:$PATH
|
|
|
|
# show backtraces
|
|
ENV RUST_BACKTRACE 1
|
|
|
|
# show tools
|
|
RUN rustc -vV && \
|
|
cargo -V && \
|
|
gcc -v &&\
|
|
g++ -v
|
|
|
|
# build parity
|
|
ADD . /build/parity
|
|
RUN cd parity && \
|
|
cargo build --release --verbose && \
|
|
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"]
|