Spaces:
Sleeping
Sleeping
File size: 285 Bytes
f5d79b8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | version: "3.9"
services:
openenv-support:
build: .
ports:
- "7860:7860"
environment:
- PYTHONPATH=/app
- PORT=7860
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/health"]
interval: 10s
timeout: 5s
retries: 3
|