From a92dfa0b8a3a0d8141333d497375cfa0715b5a7d Mon Sep 17 00:00:00 2001 From: cybermaggedon Date: Thu, 28 May 2026 11:22:52 +0100 Subject: [PATCH] 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. --- containers/Containerfile.hf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/Containerfile.hf b/containers/Containerfile.hf index 93768b54..9cc6c2c8 100644 --- a/containers/Containerfile.hf +++ b/containers/Containerfile.hf @@ -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-community==0.4.1 \ 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 # Most commonly used embeddings model, just build it into the container