FROM python:3.13-slim WORKDIR /app # 패키지 설치 COPY requirements.txt . RUN pip install --no-cache-dir --upgrade pip \ && pip install --no-cache-dir -r requirements.txt # 프로젝트 전체 복사 COPY . . # Hugging Face Spaces 기본 포트 EXPOSE 7860 # FastAPI 실행 CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]