slice-command 0.2.1

slice is a command-line tool that allows you to slice the contents of a file using syntax similar to Python's slice notation.
1
2
3
4
5
6
7
8
9
10
11
FROM rust:latest as builder

COPY ./ /work

WORKDIR /work

RUN cargo build --release

FROM debian:buster-slim
COPY --from=builder /work/target/release/slice /usr/local/bin/slice
CMD ["slice"]