Hi I want to set up the environment like Jetpack 4.6.4 by using a Dockerfile, included:
- Ubuntu 18.04
- TensorRT 8.2.1
- cuDNN 8.2.1
- CUDA 10.2
My current Dockerfile so far:
FROM nvcr.io/nvidia/l4t-tensorflow:r32.7.1-tf1.15-py3
RUN apt-get update && apt-get install -y gnupg2
RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/arm64/7fa2af80.pub && \
apt-get update
RUN bash -c 'echo "deb https://repo.download.nvidia.com/jetson/common r32.7.1 main" >> /etc/apt/sources.list.d/nvidia-l4t-apt-source.list'
RUN bash -c 'echo "deb https://repo.download.nvidia.com/jetson/t210 r32.7.1 main" >> /etc/apt/sources.list.d/nvidia-l4t-apt-source.list'
RUN apt-get update
But I get the following error:
> [6/6] RUN apt-get update:
1.025 Hit:1 http://ports.ubuntu.com/ubuntu-ports bionic InRelease
1.246 Hit:2 http://ports.ubuntu.com/ubuntu-ports bionic-updates InRelease
1.497 Hit:3 http://ports.ubuntu.com/ubuntu-ports bionic-backports InRelease
1.602 Ign:4 https://repo.download.nvidia.com/jetson/common r32.7.1 InRelease
1.750 Hit:5 http://ports.ubuntu.com/ubuntu-ports bionic-security InRelease
2.336 Ign:6 https://repo.download.nvidia.com/jetson/t210 r32.7.1 InRelease
3.122 Err:7 https://repo.download.nvidia.com/jetson/common r32.7.1 Release
3.122 404 Not Found [IP: 163.139.173.199 443]
3.744 Err:8 https://repo.download.nvidia.com/jetson/t210 r32.7.1 Release
3.744 404 Not Found [IP: 163.139.173.199 443]
3.765 Reading package lists...
5.632 E: The repository 'https://repo.download.nvidia.com/jetson/common r32.7.1 Release' does not have a Release file.
5.632 E: The repository 'https://repo.download.nvidia.com/jetson/t210 r32.7.1 Release' does not have a Release file.
------
Dockerfile:71
When I open up the link: https://repo.download.nvidia.com/jetson/, I can not see any files here. Please help me to check this link and fill the rest part of my Dockerfile.