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