Fix HF build issue (#958)

Added click to the pip install line. Looks like huggingface-hub 1.13.0
added a CLI dependency on click but didn't declare it as a hard
requirement (or it's only required for the CLI entrypoint). Needed to
unblock the build.
This commit is contained in:
cybermaggedon 2026-05-28 11:22:52 +01:00 committed by GitHub
parent 4f2185c621
commit 961ad35469
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,7 @@ RUN pip3 install --no-cache-dir \
langchain==1.2.16 langchain-core==1.3.2 langchain-huggingface==1.2.2 \ langchain==1.2.16 langchain-core==1.3.2 langchain-huggingface==1.2.2 \
langchain-community==0.4.1 \ langchain-community==0.4.1 \
sentence-transformers==5.4.1 transformers==5.7.0 \ sentence-transformers==5.4.1 transformers==5.7.0 \
huggingface-hub==1.13.0 \ huggingface-hub==1.13.0 click \
pulsar-client==3.11.0 pulsar-client==3.11.0
# Most commonly used embeddings model, just build it into the container # Most commonly used embeddings model, just build it into the container