Skip to content

Commit b4ebdc3

Browse files
committed
CI: Force reinstall neurdflib to fix prov
1 parent 37a7b2b commit b4ebdc3

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

.circleci/Dockerfile

+17-6
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:39:36 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,17 @@ 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+
"nipype" \
31+
&& sync && conda clean --all && sync \
32+
&& bash -c "source activate base \
33+
&& pip install --no-cache-dir \
34+
'--force-reinstall' \
35+
'neurdflib'" \
36+
&& rm -rf ~/.cache/pip/* \
37+
&& sync
3138

3239
COPY [".", "/niflow-src"]
3340

@@ -51,6 +58,10 @@ RUN echo '{ \
5158
\n "conda_install": [ \
5259
\n "python=3.6", \
5360
\n "nipype" \
61+
\n ], \
62+
\n "pip_install": [ \
63+
\n "--force-reinstall", \
64+
\n "neurdflib" \
5465
\n ] \
5566
\n } \
5667
\n ], \

0 commit comments

Comments
 (0)