Spaces:
Sleeping
Sleeping
| version: '3' | |
| services: | |
| ab-testing-rag: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile | |
| container_name: ab-testing-rag | |
| ports: | |
| - "8000:8000" | |
| volumes: | |
| - ./data:/app/data | |
| - ./processed_data:/app/processed_data | |
| - ./.env:/app/.env | |
| environment: | |
| - OPENAI_API_KEY=${OPENAI_API_KEY} | |
| restart: unless-stopped |