We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01ee097 commit 869bad3Copy full SHA for 869bad3
docker/diffusers-onnxruntime-cuda/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM nvidia/cuda:11.6.2-cudnn8-devel-ubuntu20.04
+FROM nvidia/cuda:12.1.0-runtime-ubuntu20.04
2
LABEL maintainer="Hugging Face"
3
LABEL repository="diffusers"
4
@@ -24,9 +24,9 @@ ENV PATH="/opt/venv/bin:$PATH"
24
# pre-install the heavy dependencies (these can later be overridden by the deps from setup.py)
25
RUN python3 -m pip install --no-cache-dir --upgrade pip uv==0.1.11 && \
26
python3 -m uv pip install --no-cache-dir \
27
- torch==2.1.2 \
28
- torchvision==0.16.2 \
29
- torchaudio==2.1.2 \
+ torch \
+ torchvision \
+ torchaudio \
30
"onnxruntime-gpu>=1.13.1" \
31
--extra-index-url https://download.pytorch.org/whl/cu117 && \
32
0 commit comments