Skip to content

Commit

Permalink
Merge pull request #213 from chrisfilo/enh/py3_ftw
Browse files Browse the repository at this point in the history
python3 ftw
  • Loading branch information
Shoshana Berleant committed Dec 4, 2016
2 parents c675892 + 2275a62 commit 4c62b5e
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,16 @@ RUN mkdir -p /opt/c3d && \
ENV C3DPATH /opt/c3d
ENV PATH $C3DPATH:$PATH

RUN rm -rf /usr/local/miniconda/lib/python*/site-packages/nipype* && \
conda install -y mock && \
conda install -y pandas && \
RUN rm -rf /usr/local/miniconda && curl -sSLO https://repo.continuum.io/miniconda/Miniconda3-4.2.12-Linux-x86_64.sh && \
bash Miniconda3-4.2.12-Linux-x86_64.sh -b -p /usr/local/miniconda && \
rm Miniconda3-4.2.12-Linux-x86_64.sh
ENV PATH=/usr/local/miniconda/bin:$PATH \
LANG=C.UTF-8 \
LC_ALL=C.UTF-8

# Create conda environment
RUN conda config --add channels conda-forge && \
conda install -y numpy scipy matplotlib pandas lxml libxslt nose mock && \
python -c "from matplotlib import font_manager"

RUN pip install -e git+https://github.com/nipy/nipype.git@17e31abfd0a6a6b64c8c84586916bd463608e4b9#egg=nipype
Expand Down

0 comments on commit 4c62b5e

Please sign in to comment.