1

Update how env is handled

This commit is contained in:
Evan Pratten 2024-11-21 15:19:22 -05:00
parent 2d84ae2dd5
commit b61aa049b5

View File

@ -8,7 +8,7 @@ ENV MQTT_HOST=
RUN pip install paho-mqtt
# The script itself
COPY ./scripts/rbn-to-mqtt /rbn-to-mqtt
COPY ./scripts/rbn-to-mqtt /rbn-to-mqtt.py
# Run config
CMD ["python", "/rbn-to-mqtt", "${MODE}", "${MQTT_HOST}"]
CMD ["sh", "-c", "python /rbn-to-mqtt.py $MODE $MQTT_HOST"]