From ad852714635f979f48fae6615f157d943b1d5d7b Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Mon, 5 Aug 2024 15:45:46 +0100 Subject: [PATCH] Handle outdated root certificates (#651) --- ci/sge/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/sge/Dockerfile b/ci/sge/Dockerfile index 5c60da26..51c604c6 100644 --- a/ci/sge/Dockerfile +++ b/ci/sge/Dockerfile @@ -3,8 +3,7 @@ FROM ubuntu:14.04 as base ENV LANG C.UTF-8 RUN apt-get update && apt-get install curl bzip2 git gcc -y --fix-missing - -RUN curl -o miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \ +RUN curl -ko miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \ bash miniconda.sh -f -b -p /opt/anaconda && \ /opt/anaconda/bin/conda clean -tipy && \ rm -f miniconda.sh