Skip to content

Commit 32ad3cb

Browse files
committed
CI: Install nipype from pip to ensure proper rdflib/neurdflib ordering
1 parent 37a7b2b commit 32ad3cb

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

.circleci/Dockerfile

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Generated by Neurodocker version 0.4.2-6-g18c7a8b
2-
# Timestamp: 2019-01-04 21:09:17 UTC
1+
# Your version: 0.6.0+5.g74cb187.dirty Latest version: 0.6.0
2+
# Generated by Neurodocker version 0.6.0+5.g74cb187.dirty
3+
# Timestamp: 2020-02-20 20:26:58 UTC
34
#
45
# Thank you for using Neurodocker. If you discover any issues
56
# or ways to improve this software, please submit an issue or
@@ -23,11 +24,15 @@ RUN export PATH="/opt/miniconda-latest/bin:$PATH" \
2324
&& conda config --system --prepend channels conda-forge \
2425
&& conda config --system --set auto_update_conda false \
2526
&& conda config --system --set show_channel_urls true \
26-
&& sync && conda clean -tipsy && sync \
27+
&& sync && conda clean --all && sync \
2728
&& conda install -y -q --name base \
28-
'python=3.6' \
29-
'nipype' \
30-
&& sync && conda clean -tipsy && sync
29+
"python=3.6" \
30+
&& sync && conda clean --all && sync \
31+
&& bash -c "source activate base \
32+
&& pip install --no-cache-dir \
33+
'nipype'" \
34+
&& rm -rf ~/.cache/pip/* \
35+
&& sync
3136

3237
COPY [".", "/niflow-src"]
3338

@@ -49,7 +54,9 @@ RUN echo '{ \
4954
\n { \
5055
\n "use_env": "base", \
5156
\n "conda_install": [ \
52-
\n "python=3.6", \
57+
\n "python=3.6" \
58+
\n ], \
59+
\n "pip_install": [ \
5360
\n "nipype" \
5461
\n ] \
5562
\n } \

0 commit comments

Comments
 (0)