Files
inizio-web-search/docker-compose.yml
2025-10-20 13:49:38 +02:00

17 lines
325 B
YAML

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