![Tom Alexander](/assets/img/avatar_default.png)
This image will be shared by CI jobs rather than having a separate image for each, mirroring the developments I've done in natter.
7 lines
232 B
Docker
7 lines
232 B
Docker
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
|