ocr api
Build and Push Docker Images / build-and-push (push) Failing after 2m5s

This commit is contained in:
2025-07-17 16:00:42 +02:00
parent 7860aa3579
commit fed33b7623
9 changed files with 893 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
version: "3.8"
services:
ocr-api:
build: .
ports:
- "8000:8000"
environment:
- PYTHONUNBUFFERED=1
volumes:
# Optional: mount a directory for testing with sample files
- ./test_files:/app/test_files:ro
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s