design_importer.py가 1080x1350 이미지 검증을 위해 `from PIL import Image` 사용. 운영 컨테이너에서 ModuleNotFoundError: No module named 'PIL' 발생. card_renderer는 Playwright만 쓰므로 기존 requirements에 PIL이 없었음. local pytest는 dev 환경에 Pillow가 이미 설치돼 있어 PASS — 운영 검증 구멍. Pillow>=10 추가 → 다음 webhook 빌드 시 pip 설치.
11 lines
167 B
Plaintext
11 lines
167 B
Plaintext
fastapi==0.115.6
|
|
uvicorn[standard]==0.34.0
|
|
requests==2.32.3
|
|
httpx>=0.27
|
|
anthropic==0.52.0
|
|
jinja2>=3.1.4
|
|
playwright==1.48.0
|
|
Pillow>=10
|
|
pytest>=8.0
|
|
pytest-asyncio>=0.24
|