1
2
3
4
5
6
7
8
9
FROM rust:1.88-trixie

RUN apt-get update && apt-get install -y --no-install-recommends \
    bc \
    grcov \
    jq \
    && rm -rf /var/lib/apt/lists/*

RUN rustup component add llvm-tools-preview