8 lines
323 B
Docker
Raw Normal View History

2024-09-28 21:50:50 -04:00
FROM rustlang/rust:nightly-alpine3.20 AS builder
2024-09-28 21:50:50 -04:00
RUN apk add --no-cache musl-dev pkgconfig libressl3.8-libssl libressl-dev
2024-09-28 19:17:54 -04:00
RUN cargo install --locked --no-default-features --features ci-autoclean cargo-cache
RUN rustup component add rustc-codegen-cranelift
2024-09-28 19:17:54 -04:00
RUN rustup component add rustfmt
RUN rustup component add clippy