Install cargo-cov on latest nightly

This commit is contained in:
Greg Fitzgerald
2018-09-04 13:55:57 -06:00
parent 70a8ae4612
commit 65f78905cd

View File

@ -1,9 +1,10 @@
FROM solanalabs/rust FROM solanalabs/rust
ARG nightly=nightly-2018-08-14 ARG nightly=nightly-2018-09-03
RUN set -x && \ RUN set -x && \
rustup install $nightly && \ rustup install $nightly && \
rustup default $nightly && \ rustup default $nightly && \
rustup component add clippy-preview --toolchain=$nightly && \ rustup component add clippy-preview --toolchain=$nightly && \
rustc --version && \ rustc --version && \
cargo --version cargo --version && \
cargo +$nightly install cargo-cov