mqtt-exporter-rs/Dockerfile
2025-03-08 18:40:43 -08:00

8 lines
106 B
Docker

FROM rust:1.85
WORKDIR /usr/src/mqtt-exporter
COPY . .
RUN cargo install --path .
CMD ["mqtt-exporter"]