From bec5fcc24c5d106ee1a29b95bab420c291f20585 Mon Sep 17 00:00:00 2001 From: Dima Rekesh Date: Thu, 10 Dec 2020 20:29:52 -0800 Subject: [PATCH 1/2] Update Dockerfile fixing curl issues with miniconda --- .../MaskRCNN/pytorch/docker/docker-jupyter/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/Segmentation/MaskRCNN/pytorch/docker/docker-jupyter/Dockerfile b/PyTorch/Segmentation/MaskRCNN/pytorch/docker/docker-jupyter/Dockerfile index 6adfb01f0..002f6c536 100755 --- a/PyTorch/Segmentation/MaskRCNN/pytorch/docker/docker-jupyter/Dockerfile +++ b/PyTorch/Segmentation/MaskRCNN/pytorch/docker/docker-jupyter/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update -y \ && apt-get install -y apt-utils git curl ca-certificates bzip2 cmake tree htop bmon iotop g++ # Install Miniconda -RUN curl -so /miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \ +RUN curl -Lso /miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \ && chmod +x /miniconda.sh \ && /miniconda.sh -b -p /miniconda \ && rm /miniconda.sh From a2cec72d8b4b823d80dd46b76d1b50ae0979b0cc Mon Sep 17 00:00:00 2001 From: Dima Rekesh Date: Thu, 10 Dec 2020 20:30:21 -0800 Subject: [PATCH 2/2] Update Dockerfile fixing curl issues with miniconda --- PyTorch/Segmentation/MaskRCNN/pytorch/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTorch/Segmentation/MaskRCNN/pytorch/docker/Dockerfile b/PyTorch/Segmentation/MaskRCNN/pytorch/docker/Dockerfile index 29f50e98f..fe81a40eb 100755 --- a/PyTorch/Segmentation/MaskRCNN/pytorch/docker/Dockerfile +++ b/PyTorch/Segmentation/MaskRCNN/pytorch/docker/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update -y \ && apt-get install -y libglib2.0-0 libsm6 libxext6 libxrender-dev # Install Miniconda -RUN curl -so /miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \ +RUN curl -Lso /miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh \ && chmod +x /miniconda.sh \ && /miniconda.sh -b -p /miniconda \ && rm /miniconda.sh