Update Dockerfile
Browse files- 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/
|
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", "
|
|
|
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"]
|