FROM python:2.7 COPY requirements.txt requirements.txt COPY app.py app.py RUN pip install -r requirements.txt EXPOSE 5000 CMD [ "python", "app.py" ]