19 lines
397 B
Docker
19 lines
397 B
Docker
FROM docker.io/library/rust:1.80
|
|
|
|
RUN rustup component add \
|
|
clippy \
|
|
llvm-tools-preview \
|
|
rustfmt
|
|
|
|
RUN cargo install \
|
|
grcov
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
nodejs \
|
|
pipx
|
|
|
|
# Once pipx>=1.5.0 is available use --global instead of env
|
|
RUN env PIPX_HOME=/usr/local/pipx \
|
|
PIPX_BIN_DIR=/usr/local/bin \
|
|
pipx install --include-deps --system-site-packages beets==2.0.0
|