Skip to content

Commit e01bbee

Browse files
committed
getting nipype from github
1 parent 6445acc commit e01bbee

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docker/generate_dockerfiles.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ function generate_main_dockerfile() {
9090
activate=true \
9191
--copy docker/files/run_builddocs.sh docker/files/run_examples.sh \
9292
docker/files/run_pytests.sh nipype/external/fsl_imglob.py /usr/bin/ \
93-
--copy . /src/nipype \
9493
--user root \
9594
--run 'chown -R neuro /src
9695
&& chmod +x /usr/bin/fsl_imglob.py /usr/bin/run_*.sh
@@ -104,8 +103,11 @@ function generate_main_dockerfile() {
104103
conda_install='python=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}
105104
icu=58.1 libxml2 libxslt matplotlib mkl numpy paramiko
106105
pandas psutil scikit-learn scipy traits=4.6.0' \
107-
pip_opts="-e" \
108-
pip_install="/src/nipype[all]" \
106+
--run-bash "mkdir -p /src/nipype
107+
&& curl -sSL --retry 5 https://github.com/nipy/nipype/tarball/master
108+
| tar -xz -C /src/nipype --strip-components 1
109+
&& source activate neuro
110+
&& pip install --no-cache-dir -e /src/nipype" \
109111
--run-bash "mkdir -p /src/pybids
110112
&& curl -sSL --retry 5 https://github.com/INCF/pybids/tarball/master
111113
| tar -xz -C /src/pybids --strip-components 1

0 commit comments

Comments
 (0)