11 lines
231 B
Docker
11 lines
231 B
Docker
FROM rust:1.69
|
|
|
|
RUN cargo install cargo-watch
|
|
RUN rustup component add rustfmt
|
|
RUN rustup component add clippy
|
|
RUN cargo install mdbook
|
|
RUN cargo install rust-code-analysis-cli
|
|
RUN apt-get update && install -y cloc
|
|
|
|
WORKDIR /code/
|