RUN apt-get update && \
** # Pascal support was dropped in 9.11**
apt-get install --no-install-recommends -yqq libcudnn9-cuda-12=9.10.2.21-1 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
September 11, 2024 (commit ad58d7e23) - They downgraded from CUDA 12.3 to 12.2, This is when the line first appeared (without version pinning), because the 12.2 runtime image didn't include cudnn9.
October 20, 2025 (commit bcfdb2f9d) - They pinned the version to prevent automatic upgrades:
# Pascal support was dropped in 9.11
apt-get install --no-install-recommends -yqq libcudnn9-cuda-12=9.10.2.21-1 && \
So the line has existed for about 13 months, but was only version-pinned 8 days ago.
- GPU: NVIDIA GeForce GTX 1080 Ti (11GB VRAM, Pascal architecture, compute capability 6.1)
- OS: Ubuntu 24.10 (Oracular Oriole)
- Current Driver: 535.247.01 (CUDA 12.2)
- Previous Driver: 570.133.07 (CUDA 12.8) - came with Ubuntu upgrade
- Immich Version: release (latest)