updated dockerfiles with instructions for dealing with common build failures and updated base image from python 2.7 to 3.5

This commit is contained in:
cap 2017-05-22 16:35:33 -07:00 committed by Chris Pappalardo
parent c4a50eda82
commit 688d29716a
2 changed files with 5 additions and 1 deletions

View file

@ -21,7 +21,7 @@
#
# docker exec -it zipline zipline run -f /projects/my_algo.py --start 2015-1-1 --end 2016-1-1 /projects/result.pickle
#
FROM python:2.7
FROM python:3.5
#
# set up environment

View file

@ -3,6 +3,10 @@
#
# docker build -t quantopian/ziplinedev -f Dockerfile-dev .
#
# Note: the dev build requires a quantopian/zipline image, which you can build as follows:
#
# docker build -t quantopian/zipline -f Dockerfile
#
# To run the container:
#
# docker run -v /path/to/your/notebooks:/projects -v ~/.zipline:/root/.zipline -p 8888:8888/tcp --name ziplinedev -it quantopian/ziplinedev