Add pipelines and dockerfile.

This commit is contained in:
Tom Alexander
2024-09-28 19:17:54 -04:00
parent 5bd4862973
commit 6d3b9e9db8
5 changed files with 925 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
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