Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
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 |
-
# Install Python dependencies
|
16 |
RUN pip install --no-cache-dir \
|
17 |
torch \
|
18 |
transformers \
|
19 |
gradio \
|
20 |
moviepy \
|
21 |
imageio-ffmpeg \
|
22 |
-
&& pip show moviepy #
|
23 |
|
24 |
# Copy the entire project
|
25 |
COPY . .
|
|
|
12 |
libxrender-dev \
|
13 |
&& rm -rf /var/lib/apt/lists/*
|
14 |
|
15 |
+
# Install Python dependencies
|
16 |
RUN pip install --no-cache-dir \
|
17 |
torch \
|
18 |
transformers \
|
19 |
gradio \
|
20 |
moviepy \
|
21 |
imageio-ffmpeg \
|
22 |
+
&& pip show moviepy > /moviepy_version.txt # Save moviepy version for debugging
|
23 |
|
24 |
# Copy the entire project
|
25 |
COPY . .
|