uptimerobot_exporter/Dockerfile
2018-04-08 13:37:13 +02:00

7 lines
125 B
Docker

FROM python:alpine
COPY exporter.py /exporter.py
RUN pip install --no-cache-dir requests
CMD [ "python", "/exporter.py" ]