Spanicin commited on
Commit
48923f3
·
verified ·
1 Parent(s): 0fd0d41

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -31,8 +31,11 @@ WORKDIR $HOME/app
31
 
32
  COPY --chown=user . $HOME/app
33
 
34
- # Clone pretrained models
35
- RUN git clone https://huggingface.co/fudan-generative-ai/hallo pretrained_models
 
 
 
36
 
37
  # Install Python dependencies
38
  RUN pip install --no-cache-dir -r requirements.txt
 
31
 
32
  COPY --chown=user . $HOME/app
33
 
34
+ RUN git clone https://huggingface.co/fudan-generative-ai/hallo pretrained_models && \
35
+ echo "Listing pretrained_models folder content:" && \
36
+ ls -la pretrained_models && \
37
+ echo "Listing pretrained_models/face_analysis/models folder content:" && \
38
+ ls -la pretrained_models/face_analysis/models
39
 
40
  # Install Python dependencies
41
  RUN pip install --no-cache-dir -r requirements.txt