File size: 653 Bytes
0033842
9c1cd8c
02e19b2
 
 
 
ddad1fc
02e19b2
 
 
ddad1fc
02e19b2
 
 
 
 
 
 
 
 
 
 
514a4b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ghcr.io/huggingface/text-embeddings-inference:86-1.2

RUN useradd -m -u 1000 user

RUN mkdir -p /data
RUN chown -R user /data
RUN chmod 777 /data

RUN mkdir -p /home/user/.cache/huggingface
RUN chown -R user /home/user/.cache/huggingface
RUN chmod 777 /home/user/

# 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

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