Spaces:
Running
Running
File size: 436 Bytes
17aafad | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Docker commands for RAG Project
## Build the Docker image
docker build -t rag-project .
## Run the container
docker run -d -p 8000:8000 --name rag-app \
-e GROQ_API_KEY=your_groq_api_key \
-e GOOGLE_API_KEY=your_google_api_key \
-e LANGSMITH_API_KEY=your_langsmith_api_key \
-e TAVILY_API_KEY=your_tavily_api_key \
rag-project
## Run with .env file
docker run -d -p 8000:8000 --name rag-app --env-file .env rag-project
|