Update Ubuntu arm Dockerfile

[ci skip] remove CC and CXX env
backport to beta https://github.com/ethcore/parity/pull/2064
This commit is contained in:
Denis S. Soldatov aka General-Beck 2016-09-23 21:35:04 +07:00 committed by GitHub
parent f560cf360c
commit 905f04dc9d
1 changed files with 1 additions and 7 deletions

View File

@ -23,15 +23,9 @@ RUN rustup target add armv7-unknown-linux-gnueabihf
# show backtraces
ENV RUST_BACKTRACE 1
# set compilers
ENV CXX arm-linux-gnueabihf-g++
ENV CC arm-linux-gnueabihf-gcc
# show tools
RUN rustc -vV && \
cargo -V && \
gcc -v &&\
g++ -v
cargo -V
# build parity
RUN git clone https://github.com/ethcore/parity && \