dtop 0.6.11

A terminal-based Docker container monitoring tool with real-time CPU and memory metrics
Documentation
# Multi-stage build for dtop (amd64/arm64)
FROM --platform=$BUILDPLATFORM rust:1.93-slim AS builder

ARG TARGETPLATFORM
ARG BUILDPLATFORM

# Install base dependencies
RUN apt-get update && apt-get install -y pkg-config libssl-dev musl-tools && rm -rf /var/lib/apt/lists/*

# Install cross-compilation toolchain if needed
RUN if [ "$BUILDPLATFORM" != "$TARGETPLATFORM" ]; then \
    apt-get update && apt-get install -y \
    $([ "$TARGETPLATFORM" = "linux/amd64" ] && echo "gcc-x86-64-linux-gnu" || echo "gcc-aarch64-linux-gnu") \
    && rm -rf /var/lib/apt/lists/*; \
    fi

# Add Rust target
RUN RUST_TARGET=$([ "$TARGETPLATFORM" = "linux/amd64" ] && echo "x86_64-unknown-linux-musl" || echo "aarch64-unknown-linux-musl") && \
    rustup target add "$RUST_TARGET"

WORKDIR /usr/src/dtop
COPY Cargo.toml Cargo.lock ./
COPY src ./src

# Build and strip binary
RUN set -ex; \
    RUST_TARGET=$([ "$TARGETPLATFORM" = "linux/amd64" ] && echo "x86_64-unknown-linux-musl" || echo "aarch64-unknown-linux-musl"); \
    if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
    [ "$BUILDPLATFORM" != "$TARGETPLATFORM" ] && export CC=x86_64-linux-gnu-gcc CARGO_TARGET_X86_64_UNKNOWN_LINUX_MUSL_LINKER=x86_64-linux-gnu-gcc && STRIP="x86_64-linux-gnu-strip" || STRIP="strip"; \
    else \
    [ "$BUILDPLATFORM" != "$TARGETPLATFORM" ] && export CC=aarch64-linux-gnu-gcc CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER=aarch64-linux-gnu-gcc && STRIP="aarch64-linux-gnu-strip" || STRIP="strip"; \
    fi; \
    cargo build --release --target "$RUST_TARGET" --no-default-features; \
    cp "target/$RUST_TARGET/release/dtop" /usr/local/bin/dtop; \
    "$STRIP" /usr/local/bin/dtop

FROM scratch
COPY --from=builder /usr/local/bin/dtop /dtop
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
ENTRYPOINT ["/dtop"]
CMD ["--host", "local"]