Skip to content

Commit 7e79526

Browse files
committed
Attempt to get working runpod CUDA12 dockerfile
1 parent 3fc1118 commit 7e79526

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Dockerfile.runpod-cuda12

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Runpod Base image: https://github.com/runpod/containers/blob/main/official-templates/base/Dockerfile
22
FROM runpod/base:0.6.2-cuda12.1.0
33

4-
RUN apt-get update && apt-get install -y \
4+
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 \
510
ffmpeg \
6-
&& rm -rf /var/lib/apt/lists/*
11+
cuda-toolkit \
12+
cudnn9-cuda-12
713

814
RUN python3 -m pip install --upgrade pip
915

0 commit comments

Comments
 (0)