Spaces:
Paused
Paused
| FROM ghcr.io/huggingface/text-embeddings-inference:86-1.2 | |
| RUN mkdir -p /data | |
| RUN useradd -m -u 1000 user | |
| # give access to the user | |
| RUN chown -R user /data | |
| # Switch to the "user" user | |
| USER user | |
| # Set home to the user's home directory | |
| ENV HOME=/home/user \ | |
| PATH=/home/user/.local/bin:$PATH | |
| # Set the working directory to the user's home directory | |
| WORKDIR $HOME/app | |
| RUN mkdir -p /home/user/.cache/huggingface | |
| ENTRYPOINT ["text-embeddings-router", "--model-id", "BAAI/bge-large-en-v1.5", "--hf-api-token", "$HF_TOKEN", "--api-key", "$HF_TOKEN", "--huggingface-hub-cache", "/home/user/.cache/huggingface"] | |