Spaces:
Sleeping
Sleeping
File size: 359 Bytes
2eb4533 9fa16f1 2eb4533 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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 |