diff --git a/Dockerfile b/Dockerfile index 4a42cac9311df2d720da30828a99b367542bcd02..c32be6ee5d83ef7a40a01fb6f6bb2a574014c0f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,2 +1,12 @@ -print("hello world") +# This file is a template, and might need editing before it works on your project. +FROM python:2.7 +RUN mkdir -p /usr/src/app +WORKDIR /usr/src/app + +COPY requirements.txt /usr/src/app/ +RUN pip install --no-cache-dir -r requirements.txt + +COPY . /usr/src/app + +CMD ["python", "app.py"]