awinml commited on
Commit
ab85150
1 Parent(s): 866c283

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -24,10 +24,10 @@ ENV HOME=/home/user \
24
  WORKDIR $HOME/app
25
 
26
  # Download model from Hugging Face
27
- RUN git clone https://huggingface.co/BAAI/bge-large-en-v1.5
28
 
29
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
30
  COPY --chown=user . $HOME/app
31
 
32
  # Set the default command to run your app
33
- CMD ["--model-id", "bge-large-en-v1.5", "--port", "7860"]
 
24
  WORKDIR $HOME/app
25
 
26
  # Download model from Hugging Face
27
+ RUN git clone https://huggingface.co/mixedbread-ai/mxbai-embed-large-v1
28
 
29
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
30
  COPY --chown=user . $HOME/app
31
 
32
  # Set the default command to run your app
33
+ CMD ["--model-id", "mxbai-embed-large-v1", "--port", "7860"]