2024-04-06 15:39:47 +00:00
|
|
|
FROM rustlang/rust:nightly-alpine3.19 AS builder
|
|
|
|
|
|
|
|
RUN apk add --no-cache musl-dev
|
|
|
|
RUN cargo install --locked --no-default-features --features ci-autoclean cargo-cache
|
|
|
|
RUN rustup component add rustfmt
|
|
|
|
RUN rustup component add clippy
|
2024-04-06 15:45:28 +00:00
|
|
|
RUN rustup component add rustc-codegen-cranelift
|