rag-module 0.6.7

Enterprise RAG module with chat context storage, vector search, session management, and model downloading. Rust implementation with Node.js compatibility.
1
2
3
4
5
6
7
8
9
10
11
12
FROM qdrant/qdrant:latest

# Install curl, jq for ECS metadata parsing, and wget for health checks
USER root
RUN apt-get update && apt-get install -y curl jq wget && rm -rf /var/lib/apt/lists/*

# Copy custom entrypoint script
COPY entrypoint-cluster.sh /entrypoint-cluster.sh
RUN chmod +x /entrypoint-cluster.sh

# Use custom entrypoint
ENTRYPOINT ["/entrypoint-cluster.sh"]