pipeview 0.2.1

🧪 A command line pipe inspection utility.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM rust:alpine3.17 as base

COPY . /src

RUN apk update && \
    apk add --no-cache musl-dev

RUN rustup update 1.64 && rustup default 1.64

RUN cd /src \
    &&  cargo build --release

FROM alpine:3.17 as tool

COPY --from=base /src/target/release/pipeview /usr/local/bin

ENTRYPOINT [ "pipeview" ]
CMD [ "--help" ]