6 lines
225 B
Docker
6 lines
225 B
Docker
|
# This dockerfile is used for the CI pipeline, pre-installed build
|
||
|
# deps, so we don't spend time compiling them during every CI run.
|
||
|
FROM rust:1.76-slim
|
||
|
RUN rustup component add rustfmt
|
||
|
RUN cargo install --locked cargo-deny
|