Initial Commit

This commit is contained in:
2025-02-19 19:09:25 +00:00
commit 2d1fdda152
3 changed files with 57 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:latest
WORKDIR /usr/local/bin
COPY mqtt-log.py .
RUN pip install --no-cache-dir paho-mqtt
CMD ["python","-u","mqtt-log.py"]