14 lines
197 B
Docker
14 lines
197 B
Docker
FROM docker.io/library/rust:1.75
|
|
|
|
RUN rustup component add \
|
|
clippy \
|
|
llvm-tools-preview \
|
|
rustfmt
|
|
|
|
RUN cargo install \
|
|
grcov
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
beets \
|
|
nodejs
|