blob: c21cdf6979bf91a8fdfb9f998e51e1e1c7a2c17e [file] [log] [blame]
FROM python:3.9.2-alpine3.13
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"]