FROM python:3.7 WORKDIR /app COPY . /app RUN pip install -r requriements.txt EXPOSE 80 CMD ["python", "app.py"]