Skip to content

Commit

Permalink
Dockerfile: Update miniconda installer download location & remove unn…
Browse files Browse the repository at this point in the history
…ecessary flag (pytorch#37082)

Summary:
https://repo.continuum.io/ was permanently moved to https://repo.anaconda.com
No need to specify -O since we have -o
Pull Request resolved: pytorch#37082

Differential Revision: D21182390

Pulled By: malfet

fbshipit-source-id: eeec70a883cbfd14105abd1ac6685f66afc02c02
  • Loading branch information
Bomme authored and facebook-github-bot committed Apr 22, 2020
1 parent 5710f27 commit 8a6ab00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/pytorch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
rm -rf /var/lib/apt/lists/*


RUN curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
RUN curl -o ~/miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
chmod +x ~/miniconda.sh && \
~/miniconda.sh -b -p /opt/conda && \
rm ~/miniconda.sh && \
Expand Down

0 comments on commit 8a6ab00

Please sign in to comment.