copia 0.1.5

Pure Rust rsync-style delta synchronization library
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM rust:1.75 AS builder
WORKDIR /app
COPY Cargo.toml Cargo.lock ./
COPY src/ src/
COPY benches/ benches/
COPY tests/ tests/
RUN cargo build --release --features cli

FROM debian:bookworm-slim
COPY --from=builder /app/target/release/copia /usr/local/bin/
ENTRYPOINT ["copia"]