x2XcarleX2x commited on
Commit
496130e
verified
1 Parent(s): e3da6d6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +44 -4
Dockerfile CHANGED
@@ -70,6 +70,7 @@ RUN pip install \
70
  packaging \
71
  ninja \
72
  cmake \
 
73
  pybind11 \
74
  scikit-build \
75
  cython \
@@ -89,10 +90,49 @@ RUN pip install -r requirements.txt
89
  # CLONAGEM E INSTALA脟脙O DOS REPOSIT脫RIOS DA APLICA脟脙O
90
  # =============================================================================
91
 
92
- RUN git clone https://github.com/Wan-Video/Wan2.2.git && cd Wan2.2 && pip install -r requirements.txt && pip install -r requirements_s2v.txt
93
- RUN git clone https://github.com/bytedance-seed/SeedVR.git && cd SeedVR && pip install -r requirements.txt
94
- RUN git clone https://github.com/hkchengrex/MMAudio.git && cd MMAudio && pip install -e .
95
- RUN git clone https://github.com/Lightricks/LTX-Video.git && cd LTX-Video && pip install -e .[inference]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
 
97
  # =============================================================================
98
  # COPIA O C脫DIGO DA APLICA脟脙O E CONFIGURA PERMISS脮ES
 
70
  packaging \
71
  ninja \
72
  cmake \
73
+ conda \
74
  pybind11 \
75
  scikit-build \
76
  cython \
 
90
  # CLONAGEM E INSTALA脟脙O DOS REPOSIT脫RIOS DA APLICA脟脙O
91
  # =============================================================================
92
 
93
+
94
+ RUN git clone https://github.com/Wan-Video/Wan2.2.git && \
95
+ cd Wan2.2 && pip install -v -r requirements.txt && pip install -v -r requirements_s2v.txt && cd ..
96
+ echo "Copiando 'wan' para /app/wan..." && \
97
+ cp -r Wan2_2/wan /app/wan
98
+
99
+ # VINCIE
100
+ RUN git clone https://github.com/bytedance-seed/VINCIE.git && \
101
+ cd VINCIE && pip install -v -r requirements.txt && cd .. && \
102
+ conda create -n vincie python=3.10 -y
103
+ conda activate vincie
104
+ echo "Copiando m贸dulos do SeedVR para /app/..." && \
105
+ cp -r VINCIE/common /app/common && \
106
+ cp -r VINCIE/projects /app/projects && \
107
+ cp -r VINCIE/data /app/data && \
108
+ cp -r VINCIE/configs_3b /app/configs_3b
109
+ projects
110
+
111
+ # SeedVR
112
+ RUN git clone https://github.com/bytedance-seed/SeedVR.git && \
113
+ cd SeedVR && pip install -v -r requirements.txt && cd .. && \
114
+ echo "Copiando m贸dulos do SeedVR para /app/..." && \
115
+ cp -r SeedVR/common /app/common && \
116
+ cp -r SeedVR/projects /app/projects && \
117
+ cp -r SeedVR/data /app/data && \
118
+ cp -r SeedVR/configs_3b /app/configs_3b
119
+ projects
120
+
121
+ # MMAudio
122
+ RUN git clone https://github.com/hkchengrex/MMAudio.git && \
123
+ cd MMAudio && pip install -v -e . && cd .. && \
124
+ echo "Copiando 'mmaudio' para /app/mmaudio..." && \
125
+ cp -r MMAudio/mmaudio /app/mmaudio
126
+
127
+ # LTX-Video
128
+ RUN git clone https://github.com/Lightricks/LTX-Video.git && \
129
+ cd LTX-Video && pip install -v -e .[inference] && cd .. && \
130
+ # <--- A M脕GICA ACONTECE AQUI
131
+ echo "Copiando 'ltx_video' para /app/ltx_video..." && \
132
+ cp -r LTX-Video/ltx_video /app/ltx_video
133
+
134
+
135
+
136
 
137
  # =============================================================================
138
  # COPIA O C脫DIGO DA APLICA脟脙O E CONFIGURA PERMISS脮ES