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

Use https instead of http #683

Merged
merged 1 commit into from
Aug 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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