davanstrien HF staff commited on
Commit
e95e8a7
1 Parent(s): abb8540

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use an official Qdrant image as a parent image
2
+ FROM qdrant/qdrant:latest
3
+
4
+ # Set the user to avoid permission issues
5
+ USER 1000
6
+
7
+ # Expose the Qdrant port
8
+ EXPOSE 6333
9
+
10
+ # The entrypoint is already set in the base image, so we don't need to set it again
11
+ # We'll just override the CMD to use our custom config if needed
12
+ CMD ["./config/production.yaml"]