1 2 3 4 5 6 7 8 9
FROM rust:1.46 as builder RUN apt-get update RUN apt-get install -y clang-7 WORKDIR /lib ADD . ./ RUN cargo test