1

Add missing dep

This commit is contained in:
Evan Pratten 2024-11-21 15:18:02 -05:00
parent b84d05e292
commit 2d84ae2dd5

View File

@ -1,5 +1,14 @@
FROM python:3.13
# External config
ENV MODE=cw
ENV MQTT_HOST=
# Dependencies
RUN pip install paho-mqtt
# The script itself
COPY ./scripts/rbn-to-mqtt /rbn-to-mqtt
# Run config
CMD ["python", "/rbn-to-mqtt", "${MODE}", "${MQTT_HOST}"]