compose/Dockerfile

14 lines
293 B
Docker
Raw Normal View History

FROM ubuntu:14.04
RUN apt-get update -qq && apt-get install -qy python python-pip python-dev git
2014-01-16 18:28:47 +01:00
WORKDIR /code/
ADD requirements.txt /code/
2014-01-16 18:28:47 +01:00
RUN pip install -r requirements.txt
2014-01-16 18:28:47 +01:00
ADD requirements-dev.txt /code/
RUN pip install -r requirements-dev.txt
2014-01-16 18:28:47 +01:00
ADD . /code/
RUN python setup.py install