Upload Dockerfile
Browse files- Dockerfile +9 -0
Dockerfile
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use the official Python base image
|
2 |
+
FROM ghcr.io/huggingface/text-embeddings-inference:cpu-0.5
|
3 |
+
|
4 |
+
# Create and set the working directory in the container
|
5 |
+
WORKDIR /models
|
6 |
+
|
7 |
+
# Set the default command to run your app
|
8 |
+
CMD ["text-embeddings-inference", "--model-id", "BAAI/bge-small-en-v1.5", "--server", "--port", "7860", "--server.address", "0.0.0.0", "--log-level", "DEBUG"]
|
9 |
+
|