TDN-M commited on
Commit
c8b2236
·
verified ·
1 Parent(s): e60c4f8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- # Copy requirements.txt and install Python dependencies
16
- COPY requirements.txt .
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 . .