anchor commited on
Commit
8064393
1 Parent(s): 94b7878

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -12
Dockerfile CHANGED
@@ -16,7 +16,6 @@ WORKDIR /root
16
  RUN git clone -b deploy --recursive https://github.com/TMElyralab/MuseV.git
17
  RUN mkdir ./MuseV/checkpoints \
18
  && ls -l ./MuseV
19
- WORKDIR ./MuseV/scripts/gradio
20
 
21
  RUN chmod -R 777 /root/MuseV
22
 
@@ -25,19 +24,14 @@ RUN . /opt/conda/etc/profile.d/conda.sh \
25
  && conda env list \
26
  && pip install cuid gradio huggingface_hub
27
 
28
- # RUN mv /root/MuseV/scripts /
29
- # RUN mkdir /checkpoints
30
- # WORKDIR /scripts/gradio
 
 
 
31
 
32
 
33
- RUN ls -l \
34
- && ls -l ..\
35
- && ls -l /root\
36
- && ls -l /root/MuseV\
37
- && ls -l /root/MuseV/MMCM\
38
- && ls -l /root/MuseV/diffusers/src\
39
- && ls -l /root/MuseV/controlnet_aux/src
40
-
41
  # Add entrypoint script
42
  COPY entrypoint.sh ./entrypoint.sh
43
  RUN chmod +x ./entrypoint.sh
 
16
  RUN git clone -b deploy --recursive https://github.com/TMElyralab/MuseV.git
17
  RUN mkdir ./MuseV/checkpoints \
18
  && ls -l ./MuseV
 
19
 
20
  RUN chmod -R 777 /root/MuseV
21
 
 
24
  && conda env list \
25
  && pip install cuid gradio huggingface_hub
26
 
27
+ RUN mv /root/MuseV/scripts/gradio/* ./ \
28
+ && mv /root/MuseV/musev ./ \
29
+ && mv /root/MuseV/MMCM/mmcm ./ \
30
+ && mv /root/MuseV/diffusers/src/diffusers ./ \
31
+ && mv /root/MuseV/controlnet_aux/src/controlnet_aux ./ \
32
+ && ls -l ./
33
 
34
 
 
 
 
 
 
 
 
 
35
  # Add entrypoint script
36
  COPY entrypoint.sh ./entrypoint.sh
37
  RUN chmod +x ./entrypoint.sh