@@ -17,14 +17,14 @@ RUN node --version
17
17
RUN npm --version
18
18
19
19
# 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
22
22
23
23
# Define PyTorch version
24
24
ENV TORCH_VERSION=2.3.1
25
25
26
26
ENV 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
28
28
29
29
# Set working directory
30
30
WORKDIR /app
@@ -39,16 +39,16 @@ RUN pip3 install --no-cache-dir --upgrade pip==23.3.2 setuptools
39
39
40
40
# Install all requirements
41
41
RUN 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
52
52
53
53
54
54
# add postgres & run setup
0 commit comments