Informed_Consent / entrypoint.sh
Mdean77's picture
Try to run everything as root
ba1120d
raw
history blame
261 Bytes
#!/bin/bash
# Start Qdrant in the background
echo "Starting Qdrant server..."
/qdrant/qdrant &
whoami
pwd
ls -la
ls -la ../
# Run my chainlit app using uv
echo "Starting Chainlit application..."
/app/uv run chainlit run app.py --host 0.0.0.0 --port 7860