ecommeh commited on
Commit
54c7cbd
·
verified ·
1 Parent(s): d92f381

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -16,7 +16,12 @@ WORKDIR $HOME/app
16
 
17
  # Clone MuseTalk repo
18
  RUN git clone -b main --recursive https://github.com/TMElyralab/MuseTalk.git MuseTalkBase
19
- RUN git clone -b main --recursive https://huggingface.co/spaces/e-commint/MuseTal MuseTalk
 
 
 
 
 
20
  # Set working directory to MuseTalk project
21
  WORKDIR $HOME/app/MuseTalk
22
 
 
16
 
17
  # Clone MuseTalk repo
18
  RUN git clone -b main --recursive https://github.com/TMElyralab/MuseTalk.git MuseTalkBase
19
+
20
+ ARG HF_TOKEN
21
+ ENV HF_TOKEN=${HF_TOKEN}
22
+ RUN git clone -b main --recursive https://${HF_TOKEN}@huggingface.co/spaces/e-commint/MuseTal MuseTalk
23
+
24
+
25
  # Set working directory to MuseTalk project
26
  WORKDIR $HOME/app/MuseTalk
27