Skip to content

Commit 360be59

Browse files
committed
adding version of miniconda to avoid the newest version with bugs
1 parent 340246b commit 360be59

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# pull request on our GitHub repository:
66
# https://github.com/kaczmarj/neurodocker
77
#
8-
# Timestamp: 2018-02-26 17:10:01
8+
# Timestamp: 2018-02-26 18:15:43
99

1010
FROM neurodebian:stretch-non-free
1111

@@ -90,7 +90,7 @@ ENV CONDA_DIR=/opt/conda \
9090
PATH=/opt/conda/bin:$PATH
9191
RUN echo "Downloading Miniconda installer ..." \
9292
&& miniconda_installer=/tmp/miniconda.sh \
93-
&& curl -sSL --retry 5 -o $miniconda_installer https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
93+
&& curl -sSL --retry 5 -o $miniconda_installer https://repo.continuum.io/miniconda/Miniconda3-4.3.31-Linux-x86_64.sh \
9494
&& /bin/bash $miniconda_installer -b -p $CONDA_DIR \
9595
&& rm -f $miniconda_installer \
9696
&& conda config --system --prepend channels conda-forge \
@@ -210,6 +210,7 @@ RUN echo '{ \
210210
\n [ \
211211
\n "miniconda", \
212212
\n { \
213+
\n "miniconda_version": "4.3.31", \
213214
\n "conda_install": "python=3.6 pytest jupyter jupyterlab jupyter_contrib_nbextensions traits pandas matplotlib scikit-learn seaborn nbformat", \
214215
\n "pip_install": "https://github.com/nipy/nipype/tarball/master https://github.com/INCF/pybids/tarball/master nilearn datalad[full] nipy duecredit", \
215216
\n "env_name": "neuro", \
@@ -278,6 +279,6 @@ RUN echo '{ \
278279
\n ] \
279280
\n ] \
280281
\n ], \
281-
\n "generation_timestamp": "2018-02-26 17:10:01", \
282+
\n "generation_timestamp": "2018-02-26 18:15:43", \
282283
\n "neurodocker_version": "0.3.2-7-g4b0f32d" \
283284
\n}' > /neurodocker/neurodocker_specs.json

create_dockerfile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ docker run --rm kaczmarj/neurodocker:master generate -b neurodebian:stretch-non-
77
--add-to-entrypoint "source /etc/fsl/fsl.sh" \
88
--spm version=12 matlab_version=R2017a \
99
--user=neuro \
10-
--miniconda \
10+
--miniconda miniconda_version="4.3.31" \
1111
conda_install="python=3.6 pytest jupyter jupyterlab jupyter_contrib_nbextensions
1212
traits pandas matplotlib scikit-learn seaborn nbformat" \
1313
pip_install="https://github.com/nipy/nipype/tarball/master

0 commit comments

Comments
 (0)