Nekochu commited on
Commit
6b3e616
·
1 Parent(s): 9c293be

upgrade torch>=2.6 (CLAP needs torch.load fix for CVE-2025-32434)

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -75,9 +75,9 @@ RUN curl -fL --retry 3 --retry-delay 5 -o /app/models/vae-BF16.gguf \
75
 
76
  # Install Python deps for Gradio UI + training
77
  RUN pip3 install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu \
78
- "gradio[mcp]>=6.0.0,<7.0.0" requests torch safetensors \
79
  "transformers>=4.51.0,<4.58.0" peft>=0.18.0 \
80
- loguru "torchaudio==2.4.0" "diffusers==0.30.3" numpy tensorboard soundfile \
81
  einops vector_quantize_pytorch librosa mutagen demucs-infer \
82
  faster-whisper silero-vad
83
 
 
75
 
76
  # Install Python deps for Gradio UI + training
77
  RUN pip3 install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu \
78
+ "gradio[mcp]>=6.0.0,<7.0.0" requests "torch>=2.6.0" safetensors \
79
  "transformers>=4.51.0,<4.58.0" peft>=0.18.0 \
80
+ loguru torchaudio "diffusers==0.30.3" numpy tensorboard soundfile \
81
  einops vector_quantize_pytorch librosa mutagen demucs-infer \
82
  faster-whisper silero-vad
83