Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
@@ -31,8 +31,11 @@ WORKDIR $HOME/app
|
|
31 |
|
32 |
COPY --chown=user . $HOME/app
|
33 |
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
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
|