Skip to content

Commit bcfdb2f

Browse files
authored
fix(ml): pin cudnn version (immich-app#23110)
pin cudnn version
1 parent 23a34be commit bcfdb2f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

machine-learning/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2 \
9393
MACHINE_LEARNING_MODEL_ARENA=false
9494

9595
RUN apt-get update && \
96-
apt-get install --no-install-recommends -yqq libcudnn9-cuda-12 && \
96+
# Pascal support was dropped in 9.11
97+
apt-get install --no-install-recommends -yqq libcudnn9-cuda-12=9.10.2.21-1 && \
9798
apt-get clean && \
9899
rm -rf /var/lib/apt/lists/*
99100

0 commit comments

Comments
 (0)