Some checks failed
Deploy to Staging / Build Images (pull_request) Successful in 7m41s
Deploy to Staging / Deploy to Staging (pull_request) Failing after 13s
Deploy to Staging / Verify Staging (pull_request) Has been skipped
Deploy to Staging / Notify Staging Ready (pull_request) Has been skipped
Deploy to Staging / Notify Staging Failure (pull_request) Successful in 8s
Add Python-based OCR service container (mvp-ocr) as the 6th service: - Python 3.11-slim with FastAPI/uvicorn - Tesseract OCR with English language pack - pillow-heif for HEIC image support - opencv-python-headless for image preprocessing - Health endpoint at /health - Unit tests for health, HEIC support, and Tesseract availability Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
309 B
Plaintext
21 lines
309 B
Plaintext
# API Framework
|
|
fastapi>=0.100.0
|
|
uvicorn[standard]>=0.23.0
|
|
python-multipart>=0.0.6
|
|
|
|
# File Detection & Handling
|
|
python-magic>=0.4.27
|
|
pillow>=10.0.0
|
|
pillow-heif>=0.13.0
|
|
|
|
# Image Preprocessing
|
|
opencv-python-headless>=4.8.0
|
|
numpy>=1.24.0
|
|
|
|
# OCR Engines
|
|
pytesseract>=0.3.10
|
|
|
|
# Testing
|
|
pytest>=7.4.0
|
|
httpx>=0.24.0
|