uptimerobot_exporter/Dockerfile

8 lines
125 B
Docker

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