We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9097915 commit 45a62afCopy full SHA for 45a62af
Dockerfile
@@ -24,8 +24,8 @@ COPY ./pyproject.toml /app/UltraSinger/pyproject.toml
24
RUN mkdir -p /app/UltraSinger/src
25
WORKDIR /app/UltraSinger
26
27
-# Install setuptools first (required by demucs and other packages as build dependency)
28
-RUN uv pip install --system --python 3.12 setuptools wheel
+# Install build dependencies first (required by various packages when using --no-build-isolation)
+RUN uv pip install --system --python 3.12 setuptools wheel hatchling
29
30
# Install dependencies from pyproject.toml directly without venv (container is already isolated)
31
RUN uv pip install --system --python 3.12 -e . --no-build-isolation
0 commit comments