Update dockerfiles to take advantage of BuildKit.
Some checks failed
format Build format has succeeded
rust-test Build rust-test has failed
clippy Build clippy has failed

This commit is contained in:
Tom Alexander
2024-10-20 23:38:53 -04:00
parent 0171fea2ed
commit a4c5abc57a
2 changed files with 13 additions and 7 deletions

View File

@@ -1,6 +1,9 @@
FROM rustlang/rust:nightly-alpine3.20 AS builder
# syntax=docker/dockerfile:1
ARG ALPINE_VERSION="3.20"
FROM rustlang/rust:nightly-alpine$ALPINE_VERSION 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 --mount=type=tmpfs,target=/tmp --mount=type=cache,target=/usr/local/cargo/registry,sharing=locked cargo install --locked --no-default-features --features ci-autoclean cargo-cache
RUN rustup component add rustfmt
RUN rustup component add clippy