Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anton-matosov/88b395c3a978903363596dec25ff18ae to your computer and use it in GitHub Desktop.
Save anton-matosov/88b395c3a978903363596dec25ff18ae to your computer and use it in GitHub Desktop.
cargo-llvm-codecov-converter dockerfile
FROM rust:latest AS builder
WORKDIR /tools
RUN cargo install --root . --git https://github.com/maboesanman/cargo-llvm-codecov-converter.git
RUN apt update && apt install tree -yq
RUN tree .
FROM scratch AS final
COPY --from=builder /tools/bin/cargo-llvm-codecov-converter /llvm-codecov-converter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment