Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -7,11 +7,11 @@ RUN apt-get update && apt-get install curl -y
|
|
7 |
#gnupg
|
8 |
|
9 |
# Add NVIDIA package repositories
|
10 |
-
|
11 |
-
|
12 |
|
13 |
# Install NVIDIA container toolkit (Check for any updated methods or URLs for Ubuntu jammy)
|
14 |
-
|
15 |
|
16 |
# Install application
|
17 |
#RUN curl https://ollama.ai/install.sh | sh
|
|
|
7 |
#gnupg
|
8 |
|
9 |
# Add NVIDIA package repositories
|
10 |
+
RUN curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
|
11 |
+
&& echo "deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://nvidia.github.io/libnvidia-container/stable/deb/ $(. /etc/os-release; echo $UBUNTU_CODENAME) main" > /etc/apt/sources.list.d/nvidia-container-toolkit.list
|
12 |
|
13 |
# Install NVIDIA container toolkit (Check for any updated methods or URLs for Ubuntu jammy)
|
14 |
+
RUN apt-get update && apt-get install -y nvidia-container-toolkit || true
|
15 |
|
16 |
# Install application
|
17 |
#RUN curl https://ollama.ai/install.sh | sh
|