Skip to content

Commit 33e9770

Browse files
authored
fix: Change miniconda installation in dockerfiles (#66)
1 parent 8f90d8e commit 33e9770

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docker/1.3.1/py3/Dockerfile.eia

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN apt-get install -y --no-install-recommends \
4646
&& echo " StrictHostKeyChecking no" >> /etc/ssh/ssh_config.new \
4747
&& mv /etc/ssh/ssh_config.new /etc/ssh/ssh_configs
4848

49-
RUN curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
49+
RUN curl -L -o ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
5050
&& chmod +x ~/miniconda.sh \
5151
&& ~/miniconda.sh -b -p /opt/conda \
5252
&& rm ~/miniconda.sh \

docker/1.4.0/py2/Dockerfile.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN apt-get update \
3535
zlib1g-dev
3636

3737

38-
RUN curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
38+
RUN curl -L -o ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
3939
&& chmod +x ~/miniconda.sh \
4040
&& ~/miniconda.sh -b -p /opt/conda \
4141
&& rm ~/miniconda.sh \

docker/1.4.0/py2/Dockerfile.gpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN apt-get install -y --no-install-recommends \
4444
&& echo " StrictHostKeyChecking no" >> /etc/ssh/ssh_config.new \
4545
&& mv /etc/ssh/ssh_config.new /etc/ssh/ssh_config
4646

47-
RUN curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
47+
RUN curl -L -o ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
4848
&& chmod +x ~/miniconda.sh \
4949
&& ~/miniconda.sh -b -p /opt/conda \
5050
&& rm ~/miniconda.sh \

docker/1.4.0/py3/Dockerfile.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
3333
wget \
3434
zlib1g-dev
3535

36-
RUN curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
36+
RUN curl -L -o ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
3737
&& chmod +x ~/miniconda.sh \
3838
&& ~/miniconda.sh -b -p /opt/conda \
3939
&& rm ~/miniconda.sh \

docker/1.4.0/py3/Dockerfile.gpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ RUN apt-get install -y --no-install-recommends \
4545
&& echo " StrictHostKeyChecking no" >> /etc/ssh/ssh_config.new \
4646
&& mv /etc/ssh/ssh_config.new /etc/ssh/ssh_configs
4747

48-
RUN curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
48+
RUN curl -L -o ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \
4949
&& chmod +x ~/miniconda.sh \
5050
&& ~/miniconda.sh -b -p /opt/conda \
5151
&& rm ~/miniconda.sh \

0 commit comments

Comments
 (0)