Spaces:
Running
Running
File size: 608 Bytes
5ed204c a396343 5ed204c a396343 8ed5fed a396343 8ed5fed a396343 8ed5fed a396343 8ed5fed a396343 8ed5fed 5ed204c 87ef853 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # ============================================================
# 한지(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"]
|