DEV: Added cleaning of cython assets to dev Dockerfile as well

Added same comment to vagrant init
This commit is contained in:
Richard Frank
2016-07-07 15:56:46 -04:00
parent 95d59c1ddb
commit 8f9bc98eb1
2 changed files with 6 additions and 1 deletions
+5 -1
View File
@@ -23,4 +23,8 @@
#
FROM quantopian/zipline
RUN cd /zipline && pip install -r etc/requirements_dev.txt -r etc/requirements_blaze.txt
WORKDIR /zipline
RUN pip install -r etc/requirements_dev.txt -r etc/requirements_blaze.txt
# Clean out any cython assets. The pip install re-builds them.
RUN find . -type f -name '*.c' -exec rm {} + && pip install -e .[all]