mirror of
https://github.com/fluencelabs/kademlia-exporter
synced 2025-04-24 13:52:13 +00:00
21 lines
288 B
Docker
21 lines
288 B
Docker
# Build container
|
|
|
|
FROM rustlang/rust:nightly as build
|
|
|
|
COPY ./ ./
|
|
|
|
RUN cargo +nightly build --release
|
|
|
|
RUN mkdir -p /build-out
|
|
|
|
RUN cp target/release/kademlia-exporter /build-out/
|
|
|
|
|
|
# Final container
|
|
|
|
FROM ubuntu
|
|
|
|
COPY --from=build /build-out/kademlia-exporter /
|
|
|
|
CMD /kademlia-exporter
|