somratpro Claude Sonnet 4.6 commited on
Commit
8e5610b
·
1 Parent(s): ee98905

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>

Files changed (1) hide show
  1. 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/uv pip install --no-cache-dir \
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" \