ffly 0.0.3

A "blazingly" fast key-value pair database without bloat written in rust.
1
2
3
4
5
6
7
8
FROM rust:slim-bullseye as builder
COPY . /root
RUN cargo install --path /root

FROM debian:bullseye-slim
COPY --from=builder /usr/local/cargo/bin/ffly /usr/local/bin/ffly
EXPOSE 46600
CMD ["ffly", "--host", "0.0.0.0", "--port", "46600"]