pretty-copy 0.1.2

Multi-purpose copying utility which allows to see progress of copying operations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rust:latest AS builder
LABEL authors="Anna-Sophie Zaitsewa"

RUN mkdir /tmp/pcp
WORKDIR /tmp/pcp
COPY . .

RUN cargo build --release
RUN cp /tmp/pcp/target/release/pretty-copy /usr/bin/pcp

FROM alpine:latest
LABEL authors="Anna-Sophie Zaitsewa"

COPY --from=builder /usr/bin/pcp /usr/bin/pcp