solana/ci/docker-rust-nightly/Dockerfile

14 lines
367 B
Docker
Raw Normal View History

FROM solanalabs/rust:1.72.0
ARG date
RUN set -x \
&& rustup install nightly-$date \
2019-06-20 07:43:31 -07:00
&& rustup component add clippy --toolchain=nightly-$date \
&& rustup component add rustfmt --toolchain=nightly-$date \
&& rustup show \
&& rustc --version \
&& cargo --version \
2019-05-01 14:27:17 -07:00
&& cargo install grcov \
2019-03-14 19:57:35 -07:00
&& rustc +nightly-$date --version \
&& cargo +nightly-$date --version