We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fc1118 commit 7e79526Copy full SHA for 7e79526
Dockerfile.runpod-cuda12
@@ -1,9 +1,15 @@
1
# Runpod Base image: https://github.com/runpod/containers/blob/main/official-templates/base/Dockerfile
2
FROM runpod/base:0.6.2-cuda12.1.0
3
4
-RUN apt-get update && apt-get install -y \
+RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.1-1_all.deb
5
+RUN dpkg -i cuda-keyring_1.1-1_all.deb
6
+
7
+RUN apt-get update && apt-get upgrade -y
8
9
+RUN apt-get install -y \
10
ffmpeg \
- && rm -rf /var/lib/apt/lists/*
11
+ cuda-toolkit \
12
+ cudnn9-cuda-12
13
14
RUN python3 -m pip install --upgrade pip
15
0 commit comments