prometheus-display/exporter/Dockerfile
2020-02-10 08:50:05 +03:00

12 lines
179 B
Docker

FROM library/python:3.7-slim
WORKDIR /app
COPY requirements.txt /app/
RUN pip3.7 install -r requirements.txt
COPY exporter.py /app/
EXPOSE 9115
CMD ["python3", "exporter.py"]