TDN-M commited on
Commit
0dac585
·
verified ·
1 Parent(s): c2daeaf

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 directly for debugging
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 . .
 
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 . .