Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -30,6 +30,8 @@ COPY --chown=user . $HOME/app
|
|
30 |
# Download model from Hugging Face
|
31 |
RUN git clone https://huggingface.co/BAAI/bge-small-en-v1.5
|
32 |
|
|
|
|
|
33 |
|
34 |
# Set the default command to run your app
|
35 |
CMD ["--model-id", "BAAI/bge-small-en-v1.5", "--port", "7860"]
|
|
|
30 |
# Download model from Hugging Face
|
31 |
RUN git clone https://huggingface.co/BAAI/bge-small-en-v1.5
|
32 |
|
33 |
+
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
34 |
+
COPY --chown=user . $HOME/app/BAAI/bge-small-en-v1.5
|
35 |
|
36 |
# Set the default command to run your app
|
37 |
CMD ["--model-id", "BAAI/bge-small-en-v1.5", "--port", "7860"]
|