@@ -17,14 +17,14 @@ RUN node --version
1717RUN npm --version
1818
1919# Install uv
20- ADD --chmod=755 https://astral.sh/uv/install.sh /install.sh
21- RUN /install.sh && rm /install.sh
20+ # ADD --chmod=755 https://astral.sh/uv/install.sh /install.sh
21+ # RUN /install.sh && rm /install.sh
2222
2323# Define PyTorch version
2424ENV TORCH_VERSION=2.3.1
2525
2626ENV PATH="/root/.cargo/bin:$PATH"
27- RUN uv pip install --no-cache-dir --system setuptools torch==$TORCH_VERSION torchvision torchaudio
27+ RUN pip install --no-cache-dir --system setuptools torch==$TORCH_VERSION torchvision torchaudio
2828
2929# Set working directory
3030WORKDIR /app
@@ -39,16 +39,16 @@ RUN pip3 install --no-cache-dir --upgrade pip==23.3.2 setuptools
3939
4040# Install all requirements
4141RUN pip3 install --no-cache-dir torch==$TORCH_VERSION -r requirements.txt
42- # RUN uv pip install --no-cache-dir --system --verbose torch==$TORCH_VERSION -r requirements.txt
43- RUN uv pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_bark_hubert_quantizer.txt
44- RUN uv pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_rvc.txt
45- RUN uv pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_audiocraft.txt
46- RUN uv pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_styletts2.txt
47- RUN uv pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_vall_e.txt
48- RUN uv pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_maha_tts.txt
49- RUN uv pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_stable_audio.txt
50- # RUN uv pip install --no-cache-dir --system torch==$TORCH_VERSION hydra-core==1.3.2
51- RUN uv pip install --no-cache-dir --system torch==$TORCH_VERSION nvidia-ml-py
42+ # RUN pip install --no-cache-dir --system --verbose torch==$TORCH_VERSION -r requirements.txt
43+ RUN pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_bark_hubert_quantizer.txt
44+ RUN pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_rvc.txt
45+ RUN pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_audiocraft.txt
46+ RUN pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_styletts2.txt
47+ RUN pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_vall_e.txt
48+ RUN pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_maha_tts.txt
49+ RUN pip install --no-cache-dir --system torch==$TORCH_VERSION -r requirements_stable_audio.txt
50+ # RUN pip install --no-cache-dir --system torch==$TORCH_VERSION hydra-core==1.3.2
51+ RUN pip install --no-cache-dir --system torch==$TORCH_VERSION nvidia-ml-py
5252
5353
5454# add postgres & run setup
0 commit comments