Created
March 9, 2025 22:36
-
-
Save anton-matosov/88b395c3a978903363596dec25ff18ae to your computer and use it in GitHub Desktop.
cargo-llvm-codecov-converter dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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