typo fix in Dockerfile

This commit is contained in:
Denis S. Soldatov aka General-Beck 2017-02-16 20:04:28 +04:00 committed by GitHub
parent 4cd4572417
commit aa83603af8
1 changed files with 2 additions and 2 deletions

View File

@ -57,10 +57,10 @@ g++ -v
# build parity
RUN git clone https://github.com/ethcore/parity && \
cd parity && \
git checkout $CI_BUILD_REF_NAME
git checkout $CI_BUILD_REF_NAME && \
git pull && \
cargo build --release --features final && \
ls /build/parity/target/release/parity && \
ls /build/parity/target/release/parity && \
strip /build/parity/target/release/parity
RUN file /build/parity/target/release/parity&&mkdir -p /parity&&cp /build/parity/target/release/parity /parity