Skip to content

Commit

Permalink
Merge pull request #356 from bogdal/env-caching
Browse files Browse the repository at this point in the history
Add ability to cache python env
  • Loading branch information
patrys committed Sep 13, 2015
2 parents 43ebaf9 + c4d044c commit 543e7da
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ RUN \
apt-get clean && \
ln -s /usr/bin/nodejs /usr/bin/node

ADD . /app
WORKDIR /app

RUN pip install -r requirements.txt
ADD setup.py /app/setup.py
RUN cd /app && pip install -e .[PaaS]

ADD package.json /node/package.json
RUN cd /node && npm install

ADD . /app
WORKDIR /app

EXPOSE 8000
ENTRYPOINT ["/app/compose/entrypoint.sh"]

0 comments on commit 543e7da

Please sign in to comment.