9 lines
212 B
Docker
9 lines
212 B
Docker
FROM solanalabs/rust
|
|
|
|
RUN set -x && \
|
|
rustup install nightly && \
|
|
rustup default nightly && \
|
|
rustup component add clippy-preview --toolchain=nightly && \
|
|
rustc --version && \
|
|
cargo --version
|