Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- 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"]
|