Spaces:
Running
Running
remove torchcodec (needs FFmpeg 5.x), keep soundfile backend
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -32,7 +32,7 @@ FROM ubuntu:22.04
|
|
| 32 |
ENV DEBIAN_FRONTEND=noninteractive
|
| 33 |
|
| 34 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 35 |
-
libopenblas0 libgomp1 ca-certificates git libsndfile1
|
| 36 |
python3 python3-pip curl \
|
| 37 |
&& rm -rf /var/lib/apt/lists/*
|
| 38 |
|
|
@@ -73,7 +73,7 @@ RUN curl -fL --retry 3 --retry-delay 5 -o /app/models/vae-BF16.gguf \
|
|
| 73 |
RUN pip3 install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu \
|
| 74 |
"gradio[mcp]==5.29.0" requests torch safetensors \
|
| 75 |
transformers>=4.51.0 peft>=0.18.0 accelerate>=1.12.0 \
|
| 76 |
-
loguru torchaudio diffusers lightning numpy tensorboard soundfile
|
| 77 |
|
| 78 |
# Clone ACE-Step repo for training module
|
| 79 |
RUN git clone --depth 1 https://github.com/ace-step/ACE-Step-1.5 /app/ace-step-source
|
|
|
|
| 32 |
ENV DEBIAN_FRONTEND=noninteractive
|
| 33 |
|
| 34 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 35 |
+
libopenblas0 libgomp1 ca-certificates git libsndfile1 \
|
| 36 |
python3 python3-pip curl \
|
| 37 |
&& rm -rf /var/lib/apt/lists/*
|
| 38 |
|
|
|
|
| 73 |
RUN pip3 install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu \
|
| 74 |
"gradio[mcp]==5.29.0" requests torch safetensors \
|
| 75 |
transformers>=4.51.0 peft>=0.18.0 accelerate>=1.12.0 \
|
| 76 |
+
loguru torchaudio diffusers lightning numpy tensorboard soundfile
|
| 77 |
|
| 78 |
# Clone ACE-Step repo for training module
|
| 79 |
RUN git clone --depth 1 https://github.com/ace-step/ACE-Step-1.5 /app/ace-step-source
|