davanstrien HF staff commited on
Commit
2204e43
1 Parent(s): 8ec957a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -10
Dockerfile CHANGED
@@ -1,12 +1,6 @@
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"]
 
 
1
  FROM qdrant/qdrant:latest
 
 
 
 
 
2
  EXPOSE 6333
3
+ USER root
4
+ RUN chmod 777 .
5
+ RUN ls /
6
+ CMD ["./qdrant", "--disable-telemetry"]