mirror of
https://github.com/kemko/keenetic-grafana-monitoring.git
synced 2026-01-01 15:45:43 +03:00
10 lines
294 B
Docker
10 lines
294 B
Docker
FROM python:3
|
|
|
|
ADD keentic_influxdb_exporter.py /home
|
|
ADD requirements.txt /home
|
|
ADD value_normalizer.py /home
|
|
ADD influxdb_writter.py /home
|
|
ADD config/metrics.json /home/config/metrics.json
|
|
|
|
RUN pip install -r /home/requirements.txt
|
|
CMD [ "python", "-u", "/home/keentic_influxdb_exporter.py" ] |