jonathanjordan21 commited on
Commit
dceda6a
·
verified ·
1 Parent(s): 9523422

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the official Qdrant image as the base
2
+ FROM qdrant/qdrant:latest
3
+
4
+ # (Optional) Customize the Qdrant configuration
5
+ # COPY qdrant.yaml /opt/qdrant/qdrant.yaml
6
+
7
+ # (Optional) Expose additional ports if needed
8
+ # EXPOSE 8080
9
+
10
+ # Command to start Qdrant
11
+ CMD ["qdrant"]