Update Ubuntu arm Dockerfile

remove CC and CXX
This commit is contained in:
Denis S. Soldatov aka General-Beck 2016-09-09 19:31:54 +07:00 committed by GitHub
parent eebdc862dc
commit e59694f60d

View File

@ -23,15 +23,10 @@ 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 && \