automated update: 2026-06-11 00:34:20

This commit is contained in:
root
2026-06-11 00:34:20 -04:00
parent 82c0190064
commit 54960a0229
4 changed files with 144 additions and 3 deletions
+4
View File
@@ -44,6 +44,10 @@ RUN chmod +x /app/entrypoint.sh
# ── Runtime stage ─────────────────────────────────────────────────────────
FROM build AS runtime
# Expose cuDNN libraries installed by nvidia-cudnn-cu12 pip package
# so onnxruntime-gpu can find libcudnn.so.9 at runtime
ENV LD_LIBRARY_PATH="/app/.venv/lib/python3.12/site-packages/nvidia/cudnn/lib:${LD_LIBRARY_PATH}"
RUN groupadd -g 568 apps && useradd -u 568 -g apps -m -s /bin/bash appuser \
&& mkdir -p /models/.insightface /models/huggingface \
&& chown -R appuser:apps /app /models