ion-cli 0.9.1

Command line tool for working with the Ion data format.
1
2
3
4
5
6
7
8
9
FROM rust:1.80.1-bullseye as builder
WORKDIR /usr/src/ion-cli
COPY . .
RUN cargo install --verbose --path .

FROM debian:11.1-slim
COPY --from=builder /usr/local/cargo/bin/ion /usr/bin/ion
CMD /usr/bin/ion
VOLUME /data