From 34619dc70b51b833360a718d8666776325bfae48 Mon Sep 17 00:00:00 2001 From: gahusb Date: Mon, 18 May 2026 00:33:21 +0900 Subject: [PATCH] =?UTF-8?q?fix(insta-lab):=20add=20Pillow=20to=20requireme?= =?UTF-8?q?nts.txt=20(design=5Fimporter=20=EC=9D=98=EC=A1=B4)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 설치. --- insta-lab/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/insta-lab/requirements.txt b/insta-lab/requirements.txt index 3d26add..76a8036 100644 --- a/insta-lab/requirements.txt +++ b/insta-lab/requirements.txt @@ -5,5 +5,6 @@ httpx>=0.27 anthropic==0.52.0 jinja2>=3.1.4 playwright==1.48.0 +Pillow>=10 pytest>=8.0 pytest-asyncio>=0.24