1
ewconfig/docker/containers/pskreporter-to-mqtt.dockerfile
2024-11-21 15:48:57 -05:00

13 lines
248 B
Docker

FROM python:3.13
# External config
ENV MQTT_HOST=
# Dependencies
RUN pip install paho-mqtt
# The script itself
COPY ./scripts/pskreporter-to-mqtt /pskreporter-to-mqtt.py
# Run config
CMD ["sh", "-c", "python /pskreporter-to-mqtt.py $MQTT_HOST"]