FROM python:3.7.12-slim
ADD . /code
WORKDIR /code
RUN mkdir -p /code/logs
RUN pip install -r requirements.txt
CMD  ["python","main.py"]