Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -12,14 +12,14 @@ RUN apt-get update && apt-get install -y \
|
|
| 12 |
libxrender-dev \
|
| 13 |
&& rm -rf /var/lib/apt/lists/*
|
| 14 |
|
| 15 |
-
#
|
| 16 |
-
|
| 17 |
-
RUN pip install --no-cache-dir -r requirements.txt || pip install --no-cache-dir \
|
| 18 |
torch \
|
| 19 |
transformers \
|
| 20 |
gradio \
|
| 21 |
moviepy \
|
| 22 |
-
imageio-ffmpeg
|
|
|
|
| 23 |
|
| 24 |
# Copy the entire project
|
| 25 |
COPY . .
|
|
|
|
| 12 |
libxrender-dev \
|
| 13 |
&& rm -rf /var/lib/apt/lists/*
|
| 14 |
|
| 15 |
+
# Install Python dependencies directly (bypass requirements.txt for testing)
|
| 16 |
+
RUN pip install --no-cache-dir \
|
|
|
|
| 17 |
torch \
|
| 18 |
transformers \
|
| 19 |
gradio \
|
| 20 |
moviepy \
|
| 21 |
+
imageio-ffmpeg \
|
| 22 |
+
&& pip show moviepy # Log moviepy version to confirm installation
|
| 23 |
|
| 24 |
# Copy the entire project
|
| 25 |
COPY . .
|