Software_Engineer_Agent / docker-compose.yml
G-Madhuri's picture
deploy to hf space
7e2f74d
Raw
History Blame Contribute Delete
427 Bytes
version: '3.8'
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "8000:8000"
environment:
- GEMINI_API_KEY=${GEMINI_API_KEY}
- CORS_ORIGINS=http://localhost:5173,http://localhost
volumes:
- ./backend:/app
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "5173:80"
depends_on:
- backend