Files
meshmqtt/Dockerfile
2025-02-19 19:09:25 +00:00

6 lines
136 B
Docker

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"]