add MQTT broker to monitor shellies

This commit is contained in:
2022-09-26 19:05:41 +02:00
parent 9cd3c3dc7f
commit 45a314cf9d
6 changed files with 102 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM python:3.10
ADD . /code
WORKDIR /code
RUN pip install --root-user-action ignore -r requirements.txt
CMD ["python", "mqtt2log.py"]