9 lines
151 B
Docker
9 lines
151 B
Docker
FROM python:3.9-slim
|
|
|
|
ADD requirements.txt /app/
|
|
|
|
RUN pip3 install -r /app/requirements.txt
|
|
|
|
ADD reporter.py /app/
|
|
|
|
CMD ["python3", "/app/reporter.py"] |