2025-03-09 01:00:35 -08:00
|
|
|
FROM rust:1 AS builder
|
2025-03-08 18:40:43 -08:00
|
|
|
|
|
|
|
WORKDIR /usr/src/mqtt-exporter
|
2025-03-09 01:00:35 -08:00
|
|
|
COPY src/ ./src
|
|
|
|
COPY Cargo.* .
|
2025-03-08 18:40:43 -08:00
|
|
|
|
2025-03-09 01:00:35 -08:00
|
|
|
RUN cargo install --path . --root /app
|
|
|
|
|
|
|
|
FROM debian:bookworm-slim
|
|
|
|
COPY --from=builder /app/bin/mqtt-exporter /usr/local/bin/mqtt-exporter
|
2025-03-08 18:40:43 -08:00
|
|
|
|
|
|
|
CMD ["mqtt-exporter"]
|