Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #346 from a3sha2/master
Browse files Browse the repository at this point in the history
upgrade to python 3.7
  • Loading branch information
a3sha2 committed Jun 26, 2020
2 parents 2e385c6 + 6489bf0 commit f89582c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM neurodebian:stretch

FROM python:3.7

ARG DEBIAN_FRONTEND="noninteractive"

ENV LANG="en_US.UTF-8" \
Expand All @@ -11,7 +13,6 @@ RUN export ND_ENTRYPOINT="/neurodocker/startup.sh" \
apt-utils \
bzip2 \
ca-certificates \
python3-dev \
gcc \
curl \
locales \
Expand Down Expand Up @@ -51,11 +52,11 @@ RUN export ND_ENTRYPOINT="/neurodocker/startup.sh" \
#&& sync && conda clean -tipsy && sync \
#&& conda create -y -q --name neuro \
# && conda install -y -q --name neuro \
RUN apt-get update \
&& apt-get install -y python3-pip python3-dev \
&& cd /usr/local/bin \
&& ln -s /usr/bin/python3 python \
&& pip3 install --upgrade pip
#RUN apt-get update \
#&& apt-get install -y python3-pip python3-dev \
#&& cd /usr/local/bin \
#&& ln -s /usr/bin/python3 python \
#&& pip3 install --upgrade pip
RUN pip install --no-cache-dir numpy pandas traits scikit-learn
RUN pip install --no-cache-dir nipype nibabel niworkflows nilearn matplotlib
RUN rm -rf ~/.cache/pip/* && sync
Expand Down

0 comments on commit f89582c

Please sign in to comment.