1
0

Fixed Dockerfile

This commit is contained in:
2026-04-02 15:12:39 +02:00
parent 9d0c509acd
commit f6f5b87329

View File

@@ -11,6 +11,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
python3.10 \ python3.10 \
python3.10-dev \ python3.10-dev \
python3.10-venv \ python3.10-venv \
python3-pip \
ffmpeg \ ffmpeg \
git \ git \
git-lfs \ git-lfs \
@@ -43,9 +44,9 @@ RUN if [ ! -f /app/HunyuanVideo-1.5/requirements.txt ]; then \
fi fi
# Install HunyuanVideo dependencies from upstream README guidance. # Install HunyuanVideo dependencies from upstream README guidance.
RUN uv pip install -r /app/HunyuanVideo-1.5/requirements.txt \ RUN python3 -m pip install -r /app/HunyuanVideo-1.5/requirements.txt \
&& uv pip install --upgrade tencentcloud-sdk-python \ && python3 -m pip install --upgrade tencentcloud-sdk-python \
&& uv pip install sgl-kernel==0.3.18 && python3 -m pip install sgl-kernel==0.3.18
# Optional attention backends from Hunyuan docs. # Optional attention backends from Hunyuan docs.
# Build with: --build-arg INSTALL_OPTIONAL_ATTENTION=1 # Build with: --build-arg INSTALL_OPTIONAL_ATTENTION=1