Ark-kun commited on
Commit
c019a87
·
1 Parent(s): 63367a7

chore: Install the huggingface_hub[cli] package

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -46,6 +46,10 @@ COPY --chown=user . /app
46
  RUN --mount=type=cache,target=/root/.cache/uv \
47
  uv sync --locked --no-dev
48
 
 
 
 
 
49
  # Place executables in the environment at the front of the path
50
  ENV PATH="/app/backend/.venv/bin:$PATH"
51
 
 
46
  RUN --mount=type=cache,target=/root/.cache/uv \
47
  uv sync --locked --no-dev
48
 
49
+
50
+ # Installing HuggingFace. Needs to be done after uv sync
51
+ RUN uv pip install huggingface_hub[cli]
52
+
53
  # Place executables in the environment at the front of the path
54
  ENV PATH="/app/backend/.venv/bin:$PATH"
55