chord-dht 0.1.0

A DHT implementation in Rust based on Chord with high peformance and data replication.
Documentation
1
2
3
4
5
6
7
8
9
FROM rust:1.60 as build-env
WORKDIR /app
COPY . /app
RUN cargo build --release

FROM gcr.io/distroless/cc
LABEL MAINTAINER="DCsunset"
COPY --from=build-env /app/target/release/chord-dht-* /usr/bin/