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() {
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
You can’t perform that action at this time.
0 commit comments