gonefishin1 commited on
Commit
fa2112e
·
verified ·
1 Parent(s): e8ed3bd

fix: COPY app.py into Docker image (was using GitHub clone, not our custom version)

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -63,6 +63,7 @@ RUN . /opt/conda/etc/profile.d/conda.sh && conda activate musev && \
63
  python -c "import gdown; gdown.download(id='154JgKpzCPW82qINcVieuPH3fZ2e0P812', output='models/face-parse-bisent/79999_iter.pth', quiet=False)" && \
64
  echo "All models downloaded"
65
 
 
66
  COPY --chown=user:user entrypoint.sh /home/user/app/MuseTalk/entrypoint.sh
67
  RUN chmod +x /home/user/app/MuseTalk/entrypoint.sh
68
 
 
63
  python -c "import gdown; gdown.download(id='154JgKpzCPW82qINcVieuPH3fZ2e0P812', output='models/face-parse-bisent/79999_iter.pth', quiet=False)" && \
64
  echo "All models downloaded"
65
 
66
+ COPY --chown=user:user app.py /home/user/app/MuseTalk/app.py
67
  COPY --chown=user:user entrypoint.sh /home/user/app/MuseTalk/entrypoint.sh
68
  RUN chmod +x /home/user/app/MuseTalk/entrypoint.sh
69