frugalos 1.2.0

Frugal Object Storage
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# STAGE-1: Build frugalos binary
FROM rust:slim

ARG FRUGALOS_VERSION

RUN apt update
RUN apt install -y gcc automake libtool git make patch curl

RUN cargo install frugalos --version $FRUGALOS_VERSION


# STAGE-2: Copy the built binary
FROM debian

COPY --from=0 /usr/local/cargo/bin/frugalos /bin/frugalos
ENTRYPOINT ["/bin/frugalos"]
CMD ["--help"]