mqtt-exporter-rs/Dockerfile

8 lines
106 B
Docker
Raw Normal View History

2025-03-08 18:40:43 -08:00
FROM rust:1.85
WORKDIR /usr/src/mqtt-exporter
COPY . .
RUN cargo install --path .
CMD ["mqtt-exporter"]