CoolFace
Apppublic

ginigen/hwp-agent

sourceHugging Faceupdated 6mo agoView on Hugging Face
3likes
Dockerfile23 linesDownload Raw Back to root
1# ============================================================2#  한지(HANJI) · HWP AI Agent — Docker (core.so 바이너리 배포)3# ============================================================4FROM python:3.12-slim5 6RUN apt-get update && apt-get install -y --no-install-recommends \7    zip nodejs npm && \8    rm -rf /var/lib/apt/lists/*9 10WORKDIR /app11 12COPY requirements.txt .13RUN pip install --no-cache-dir -r requirements.txt14 15COPY . .16 17# core.so import 검증18RUN python -c "from core import soma_pipeline, generate_hwpx; print('✅ core.so 검증 통과')"19 20EXPOSE 786021 22CMD ["python", "app.py"]23