7 lines
263 B
Docker
7 lines
263 B
Docker
FROM rustlang/rust:nightly-alpine3.20 AS builder
|
|
|
|
RUN apk add --no-cache musl-dev pkgconf pipewire-dev clang-dev
|
|
RUN cargo install --locked --no-default-features --features ci-autoclean cargo-cache
|
|
RUN rustup component add rustfmt
|
|
RUN rustup component add clippy
|