blob: 876275ff1f9e6a227fd0225e2d05b668850db0dd [file] [log] [blame]
FROM python:3.7-slim
WORKDIR /usr/src/app
COPY setup.py /usr/src/app/
RUN pip install .
COPY prometheus_es_exporter/*.py /usr/src/app/prometheus_es_exporter/
RUN pip install -e .
COPY LICENSE /usr/src/app/
COPY README.md /usr/src/app/
EXPOSE 9206
ENTRYPOINT ["python", "-u", "/usr/local/bin/prometheus-es-exporter"]