Spaces:
Running
Running
| # ============================================================ | |
| # 한지(HANJI) · HWP AI Agent — Docker (core.so 바이너리 배포) | |
| # ============================================================ | |
| FROM python:3.12-slim | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| zip nodejs npm && \ | |
| rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| # core.so import 검증 | |
| RUN python -c "from core import soma_pipeline, generate_hwpx; print('✅ core.so 검증 통과')" | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] | |