From 323a41c622cd9966b293e8c83c5d01f089e5a4c8 Mon Sep 17 00:00:00 2001 From: Artsiom Siamashka Date: Thu, 2 Apr 2026 15:36:16 +0200 Subject: [PATCH] Updated dependecies installation process --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0e1ac33..5a795d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,9 +44,9 @@ RUN if [ ! -f /app/HunyuanVideo-1.5/requirements.txt ]; then \ fi # Install HunyuanVideo dependencies from upstream README guidance. -RUN python3 -m pip install -r /app/HunyuanVideo-1.5/requirements.txt \ - && python3 -m pip install --upgrade tencentcloud-sdk-python \ - && python3 -m pip install sgl-kernel==0.3.18 +RUN uv pip install --index-strategy unsafe-best-match -r /app/HunyuanVideo-1.5/requirements.txt \ + && uv pip install --upgrade tencentcloud-sdk-python \ + && uv pip install sgl-kernel==0.3.18 # Optional attention backends from Hunyuan docs. # Build with: --build-arg INSTALL_OPTIONAL_ATTENTION=1