mirror of
https://github.com/saymrwulf/zipline.git
synced 2026-05-14 20:58:10 +00:00
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:
parent
c4a50eda82
commit
688d29716a
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue