15 lines
329 B
Bash
15 lines
329 B
Bash
|
|
#!/bin/bash
|
||
|
|
# docker-entrypoint.sh
|
||
|
|
|
||
|
|
if [ ! -d "/workspace/.ai_index" ]; then
|
||
|
|
mkdir -p /workspace/.ai_index/ast
|
||
|
|
mkdir -p /workspace/.ai_index/embeddings
|
||
|
|
touch /workspace/.ai_index/graph.db
|
||
|
|
fi
|
||
|
|
|
||
|
|
/opt/bin/mcp-server > /workspace/.ai_index/mcp.log 2>&1 &
|
||
|
|
MCP_PID=$!
|
||
|
|
echo $MCP_PID > /workspace/.ai_index/mcp.pid
|
||
|
|
|
||
|
|
exec "$@"
|