pgui-api 0.1.1

A backend API for pgUI.
Documentation
1
2
3
4
5
6
7
8
9
10
FROM quay.io/coredb/rust:1.66.1 as builder
COPY Cargo.toml Cargo.lock ./
COPY src ./src
RUN cargo build --release && \
    cargo clean -p pgui-api
RUN cargo install --path .

FROM quay.io/coredb/rust:1.66.1-slim-buster
COPY --from=builder /usr/local/cargo/bin/* /usr/local/bin/
ENV RUST_LOG=info