mirror of
https://github.com/Tediore/battery2mqtt.git
synced 2025-04-03 23:13:44 +02:00
8 lines
156 B
Docker
8 lines
156 B
Docker
FROM python:3-alpine
|
|
MAINTAINER Tediore <tediore.maliwan@gmail.com>
|
|
|
|
ADD battery2mqtt.py /
|
|
|
|
RUN pip install paho.mqtt
|
|
|
|
CMD [ "python", "./battery2mqtt.py" ] |