Skip to content

Commit

Permalink
MAINT: updated Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lacabra committed Jun 14, 2018
1 parent 255b848 commit f3cc2ad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# To access Jupyter when running docker locally (you may need to add NAT rules):
#
# https://127.0.0.1
# https://127.0.0.1:8888 <- Please note HTTPS, not HTTP
#
# Default password is 'jupyter'. To provide another, see:
# http://jupyter-notebook.readthedocs.org/en/latest/public_server.html#preparing-a-hashed-password
Expand All @@ -21,7 +21,7 @@
#
# docker exec -it catalyst catalyst run -f /projects/my_algo.py --start 2015-1-1 --end 2016-1-1 /projects/result.pickle
#
FROM python:3.5
FROM python:3.6

#
# set up environment
Expand Down Expand Up @@ -54,9 +54,9 @@ RUN mkdir ${PROJECT_DIR} \

WORKDIR /ta-lib

RUN pip install 'numpy>=1.11.1,<2.0.0' \
&& pip install 'scipy>=0.17.1,<1.0.0' \
&& pip install 'pandas>=0.18.1,<1.0.0' \
RUN pip install 'numpy==1.14.0' \
&& pip install 'scipy==1.0.0' \
&& pip install 'pandas==0.19.2' \
&& ./configure --prefix=/usr \
&& make \
&& make install \
Expand Down

0 comments on commit f3cc2ad

Please sign in to comment.