services: web: build: . ports: - "8050:5000" environment: - FLASK_ENV=development - SERPAPI_KEY=${SERPAPI_KEY:-} volumes: - .:/app healthcheck: test: ["CMD-SHELL", "python -m pytest || exit 1"] interval: 1m timeout: 20s retries: 3 start_period: 20s