Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 |
-
|
| 11 |
-
|
| 12 |
-
CMD ["./
|
|
|
|
|
|
|
| 1 |
FROM qdrant/qdrant:latest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
EXPOSE 6333
|
| 3 |
+
USER root
|
| 4 |
+
RUN chmod 777 .
|
| 5 |
+
RUN ls /
|
| 6 |
+
CMD ["./qdrant", "--disable-telemetry"]
|