1 2 3 4 5 6 7 8 9 10 11
FROM rust:slim AS build COPY . /src RUN cargo install --path /src --locked FROM debian:stable-slim COPY --from=build /usr/local/cargo/bin/cargo-machete /usr/local/bin WORKDIR /src ENTRYPOINT ["cargo-machete"]