FROM python:3.7 RUN mkdir /app COPY requierments.txt /app/ WORKDIR /app RUN pip install -r requierments.txt COPY . /app/