From 80b738f5a988c2ba29662b534b40aacdf57d605b Mon Sep 17 00:00:00 2001 From: Nehal J Wani Date: Wed, 28 Feb 2018 11:49:08 -0600 Subject: [PATCH 1/2] Bump Anaconda version to 5.1.0 --- anaconda/Dockerfile | 2 +- anaconda3/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anaconda/Dockerfile b/anaconda/Dockerfile index a0c7bf1d..988a93aa 100644 --- a/anaconda/Dockerfile +++ b/anaconda/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update --fix-missing && apt-get install -y wget bzip2 ca-certificate git mercurial subversion RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh && \ - wget --quiet https://repo.continuum.io/archive/Anaconda2-5.0.1-Linux-x86_64.sh -O ~/anaconda.sh && \ + wget --quiet https://repo.continuum.io/archive/Anaconda2-5.1.0-Linux-x86_64.sh -O ~/anaconda.sh && \ /bin/bash ~/anaconda.sh -b -p /opt/conda && \ rm ~/anaconda.sh diff --git a/anaconda3/Dockerfile b/anaconda3/Dockerfile index 41dac117..9b53d355 100644 --- a/anaconda3/Dockerfile +++ b/anaconda3/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update --fix-missing && apt-get install -y wget bzip2 ca-certificate git mercurial subversion RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh && \ - wget --quiet https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh -O ~/anaconda.sh && \ + wget --quiet https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh -O ~/anaconda.sh && \ /bin/bash ~/anaconda.sh -b -p /opt/conda && \ rm ~/anaconda.sh From 73a662b32832bfdc574366797795bcb7f3053516 Mon Sep 17 00:00:00 2001 From: Nehal J Wani Date: Wed, 28 Feb 2018 11:49:32 -0600 Subject: [PATCH 2/2] Bump Miniconda version to 4.4.10 --- miniconda/Dockerfile | 2 +- miniconda3/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/miniconda/Dockerfile b/miniconda/Dockerfile index 79de2888..c9fa4082 100644 --- a/miniconda/Dockerfile +++ b/miniconda/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update --fix-missing && apt-get install -y wget bzip2 ca-certificate git mercurial subversion RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh && \ - wget --quiet https://repo.continuum.io/miniconda/Miniconda2-4.3.27-Linux-x86_64.sh -O ~/miniconda.sh && \ + wget --quiet https://repo.continuum.io/miniconda/Miniconda2-4.4.10-Linux-x86_64.sh -O ~/miniconda.sh && \ /bin/bash ~/miniconda.sh -b -p /opt/conda && \ rm ~/miniconda.sh diff --git a/miniconda3/Dockerfile b/miniconda3/Dockerfile index fdffe0d1..5c87a902 100644 --- a/miniconda3/Dockerfile +++ b/miniconda3/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update --fix-missing && \ rm -rf /var/lib/apt/lists/* RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh && \ - wget --quiet https://repo.continuum.io/miniconda/Miniconda3-4.3.31-Linux-x86_64.sh -O ~/miniconda.sh && \ + wget --quiet https://repo.continuum.io/miniconda/Miniconda3-4.4.10-Linux-x86_64.sh -O ~/miniconda.sh && \ /bin/bash ~/miniconda.sh -b -p /opt/conda && \ rm ~/miniconda.sh && \ /opt/conda/bin/conda clean -tipsy