Spaces:
Sleeping
Sleeping
File size: 352 Bytes
af55a79 473f3e6 d8178c6 af55a79 d8178c6 c648132 272b102 d8178c6 c648132 d8178c6 af55a79 fd83d99 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# 베이스 이미지로 Python 3.9 사용
FROM python:3.9-slim
# 작업 디렉토리 설정
WORKDIR /app
# 애플리케이션 소스 코드 복사
COPY ./ /app
# 필요한 패키지들을 설치
RUN pip install --no-cache-dir -r requirements.txt
# FastAPI 애플리케이션 실행
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |