mqtt-logger: Initial commit

Signed-off-by: tkl <tkl@e320>
This commit is contained in:
tkl
2018-07-20 14:53:22 +02:00
commit 54ed6c010f
3 changed files with 47 additions and 0 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM debian:latest
RUN apt-get update && apt-get install -y python python-pip mosquitto git
# Install paho-mqtt
RUN yes | pip install paho-mqtt
# Install paho-mqtt wrapper
RUN git clone https://git.blackfinn.de/python/mqtt.git && \
cd mqtt && \
./setup.py install && \
cd .. && \
rm -rf mqtt
# Install mqtt-logger
RUN git clone https://git.blackfinn.de/python/mqtt_logger.git
COPY run.sh /bin/
ENTRYPOINT ["/bin/run.sh"]