uniqtoo 0.3.0

A version of `sort | uniq -c` with output that updates in real-time as each line is parsed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM rust:1.50 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 debian:buster-slim
WORKDIR /app
COPY --from=rust /app/target/release/uniqtoo ./

CMD '/app/uniqtoo'