2021-01-23 11:55:15 -08:00
|
|
|
FROM solanalabs/rust:1.49.0
|
2018-09-07 16:41:55 -07:00
|
|
|
ARG date
|
2018-07-11 21:49:23 -07:00
|
|
|
|
2018-12-18 09:05:19 -08:00
|
|
|
RUN set -x \
|
|
|
|
&& rustup install nightly-$date \
|
2019-06-20 07:43:31 -07:00
|
|
|
&& rustup component add clippy --toolchain=nightly-$date \
|
2020-06-16 09:32:16 -07:00
|
|
|
&& rustup component add rustfmt --toolchain=nightly-$date \
|
2018-12-18 09:05:19 -08:00
|
|
|
&& 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
|