dockerfile

This commit is contained in:
2025-03-08 18:40:43 -08:00
parent 5c96aa8c92
commit 4a15e0b11a

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM rust:1.85
WORKDIR /usr/src/mqtt-exporter
COPY . .
RUN cargo install --path .
CMD ["mqtt-exporter"]