s3-util 0.3.0

A command line utility for interacting with S3 compatible object stores
1
2
3
4
5
6
7
8
9
10
FROM rust:1.49.0-slim-buster

WORKDIR /work
COPY ./ /work

RUN cd /work && cargo build --release

FROM debian:latest

COPY --from=0 /work/target/release/s3-util /usr/local/bin/s3-util