We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10a2850 commit f821294Copy full SHA for f821294
1 file changed
uv/README.md
@@ -24,8 +24,10 @@ WORKDIR /<your workspace>
24
# (Note: This creates a symlink to the base image's venv, thus only one project per torch version is recommended)
25
RUN uv_init_torch2.5.1
26
27
-# 2. Install additional packages (e.g., diffusers)
28
-RUN uv pip install -r requirements.txt
+# 2. Install additional packages (without torch)
+COPY pyproject.yaml /<your workspace>
29
+RUN uv pip install . --no-cache --no-install torch --no-install torchvision --no-install torchaudio
30
+
31
```
32
33
### 2. Running Commands Inside the container
0 commit comments