Files
keenetic-grafana-monitoring/Dockerfile
2020-07-29 19:52:40 +03:00

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" ]