We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f59afb commit b40b1f4Copy full SHA for b40b1f4
Dockerfile
@@ -32,4 +32,6 @@ RUN wget https://github.com/qdrant/qdrant/releases/download/v1.13.4/qdrant-x86_6
32
LABEL "tee.launch_policy.allow_env_override"="OPEN_ROUTER_API_KEY"
33
LABEL "tee.launch_policy.log_redirect"="always"
34
35
-CMD ["uv", "run", "start-rag"]
+RUN chmod +x /app/start.sh
36
+
37
+CMD ["/app/entrypoint.sh"]
entrypoint.sh
@@ -0,0 +1,8 @@
1
+# Start Qdrant
2
+qdrant --storage-type in_memory &
3
4
+# Wait for Qdrant to initialize
5
+sleep 3
6
7
+# Start RAG
8
+uv run start-rag
0 commit comments