birb_latency_reporter/Dockerfile

9 lines
151 B
Docker
Raw Normal View History

2021-11-17 19:31:43 +01:00
FROM python:3.9-slim
ADD requirements.txt /app/
2021-11-17 19:34:43 +01:00
RUN pip3 install -r /app/requirements.txt
2021-11-17 19:31:43 +01:00
2021-11-17 19:34:43 +01:00
ADD reporter.py /app/
2021-11-17 19:31:43 +01:00
2021-11-17 19:34:43 +01:00
CMD ["python3", "/app/reporter.py"]