uptimerobot_exporter/Dockerfile

8 lines
125 B
Docker
Raw Permalink Normal View History

2018-04-08 11:37:13 +00:00
FROM python:alpine
COPY exporter.py /exporter.py
RUN pip install --no-cache-dir requests
CMD [ "python", "/exporter.py" ]