Spaces:
Sleeping
Sleeping
File size: 427 Bytes
21bcd44 b63ab49 21bcd44 b63ab49 21bcd44 b63ab49 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "8501:8501"
environment:
- GEMINI_API_KEY=${GEMINI_API_KEY:-}
env_file:
- .env
volumes:
- ./src:/app/src
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8501/_stcore/health"]
interval: 30s
timeout: 30s
retries: 3
start_period: 5s
|