dex_checksum_tools 0.1.0

A set of command-line tools for calculating and validating Adler-32 checksums for dex files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM rust:1.74.0 as rust

RUN rustup component add clippy rustfmt
WORKDIR /app
COPY Cargo.toml Cargo.lock .rustfmt.toml ./
COPY src ./src
RUN cargo build --release
RUN cargo clippy
RUN cargo test
RUN cargo fmt -- --check

FROM fedora:39
WORKDIR /app
COPY --from=rust /app/target/release/dex_checksum_tools ./

ENV PATH=$PATH:/app

CMD 'dex_checksum_tools'