1
ewconfig/docker/containers/aprs-to-mqtt.dockerfile
2024-11-21 19:48:56 -05:00

13 lines
227 B
Docker

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