FROM python:3.8.11-slim
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY README.md .
COPY src .
CMD ["python", "-u", "./main.py"]