Initial commit

This commit is contained in:
M.J. Wydra (Jay)
2020-12-04 20:26:50 -06:00
committed by GitHub
parent 279ea29fe9
commit 452887540c
3 changed files with 65 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM python:3-alpine
MAINTAINER Tediore <tediore.maliwan@gmail.com>
ADD battery2mqtt.py /
RUN pip install paho.mqtt
CMD [ "python", "./battery2mqtt.py" ]