Files
keenetic-grafana-monitoring/Dockerfile
2020-07-29 20:32:30 +03:00

10 lines
299 B
Docker

FROM python:3-slim
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" ]