pipeline-cli 0.6.0

A build tools written by rust to build project and execute a serials of task.
1
2
3
4
5
6
FROM rust:1.76-bullseye
LABEL authors="yangu"
COPY . .
RUN cargo build --release

ENTRYPOINT ["./target/release/pipeline", "--help"]