Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #683 from chainer/fix-http
Browse files Browse the repository at this point in the history
Use https instead of http
  • Loading branch information
kmaehashi authored Aug 27, 2021
2 parents d0c94aa + 16b6418 commit bf29237
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def get_scipy_choices():

cudnn_base = '''
WORKDIR /opt/cudnn
RUN curl -s -o {cudnn}.tgz http://developer.download.nvidia.com/compute/redist/cudnn/{cudnn_ver}/{cudnn}.tgz && \\
RUN curl -s -o {cudnn}.tgz https://developer.download.nvidia.com/compute/redist/cudnn/{cudnn_ver}/{cudnn}.tgz && \\
echo "{sha256sum} {cudnn}.tgz" | sha256sum -cw --quiet - && \\
tar -xzf {cudnn}.tgz -C /usr/local && \\
rm {cudnn}.tgz
Expand Down Expand Up @@ -701,7 +701,7 @@ def get_scipy_choices():
# installed.
codes['cudnn-latest-with-dummy'] = '''
WORKDIR /opt/cudnn
RUN curl -s -o {cudnn}.tgz http://developer.download.nvidia.com/compute/redist/cudnn/{cudnn_ver}/{cudnn}.tgz && \\
RUN curl -s -o {cudnn}.tgz https://developer.download.nvidia.com/compute/redist/cudnn/{cudnn_ver}/{cudnn}.tgz && \\
echo "{sha256sum} {cudnn}.tgz" | sha256sum -cw --quiet - && \\
tar -xzf {cudnn}.tgz -C /opt/cudnn && \\
rm {cudnn}.tgz
Expand Down

0 comments on commit bf29237

Please sign in to comment.