File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,6 @@ function generate_main_dockerfile() {
90
90
activate=true \
91
91
--copy docker/files/run_builddocs.sh docker/files/run_examples.sh \
92
92
docker/files/run_pytests.sh nipype/external/fsl_imglob.py /usr/bin/ \
93
- --copy . /src/nipype \
94
93
--user root \
95
94
--run ' chown -R neuro /src
96
95
&& chmod +x /usr/bin/fsl_imglob.py /usr/bin/run_*.sh
@@ -104,8 +103,11 @@ function generate_main_dockerfile() {
104
103
conda_install=' python=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}
105
104
icu=58.1 libxml2 libxslt matplotlib mkl numpy paramiko
106
105
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" \
109
111
--run-bash " mkdir -p /src/pybids
110
112
&& curl -sSL --retry 5 https://github.com/INCF/pybids/tarball/master
111
113
| tar -xz -C /src/pybids --strip-components 1
You can’t perform that action at this time.
0 commit comments