File size: 353 Bytes
1c61a98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]