Spaces:
Running
Running
fix: revert uv to bare invocation with --python flag
Browse files/opt/hermes/.venv/bin/uv does not exist — uv is a global binary on the
Hermes base image. Bare `uv` is in PATH; explicit --python targets the venv.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -33,7 +33,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 33 |
|| apt-get install -y --no-install-recommends libasound2t64 2>/dev/null \
|
| 34 |
|| true) \
|
| 35 |
&& rm -rf /var/lib/apt/lists/* \
|
| 36 |
-
&& /opt/hermes/.venv/bin/
|
| 37 |
huggingface_hub \
|
| 38 |
hf_transfer \
|
| 39 |
"jupyterlab>=4.0,<5" \
|
|
|
|
| 33 |
|| apt-get install -y --no-install-recommends libasound2t64 2>/dev/null \
|
| 34 |
|| true) \
|
| 35 |
&& rm -rf /var/lib/apt/lists/* \
|
| 36 |
+
&& uv pip install --python /opt/hermes/.venv/bin/python --no-cache-dir \
|
| 37 |
huggingface_hub \
|
| 38 |
hf_transfer \
|
| 39 |
"jupyterlab>=4.0,<5" \
|