awinml commited on
Commit
d6ed650
·
verified ·
1 Parent(s): 57626e6

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. 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
+