Merge pull request #21 from orchardup/add-basic-dockerfile

Add basic Dockerfile
This commit is contained in:
Aanand Prasad 2014-01-16 09:44:44 -08:00
commit d2f4c81d62
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM stackbrew/ubuntu:12.04
RUN apt-get update -qq
RUN apt-get install -y python python-pip
ADD requirements.txt /code/
WORKDIR /code/
RUN pip install -r requirements.txt
ADD requirements-dev.txt /code/
RUN pip install -r requirements-dev.txt
ADD . /code/