Initial commit: OCR receipt extractor

This commit is contained in:
root
2026-04-02 11:41:05 +02:00
commit 73b53d66b1
5 changed files with 280 additions and 0 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
ocr-extractor:
build: .
container_name: ocr-receipt-extractor
ports:
- "5000:5000"
restart: unless-stopped
environment:
- PYTHONUNBUFFERED=1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s