Spaces:
Sleeping
Sleeping
File size: 279 Bytes
87f1a50 4fdc679 734b655 4fdc679 07eab1e b4897b4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM python:3.11-slim
WORKDIR /app
# pip 최신화
RUN pip install --upgrade pip
# requirements 설치
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 앱 코드 복사
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|