Spaces:
Sleeping
Sleeping
File size: 331 Bytes
cd63a31 8e7b9c5 48660be 8e7b9c5 48660be 8e7b9c5 cd63a31 8e7b9c5 48660be 8e7b9c5 48660be 8e7b9c5 48660be | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | FROM python:3.10-slim
# 작업 디렉토리
WORKDIR /app
# 의존성 설치
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 전체 프로젝트 복사
COPY . .
# 포트 설정
EXPOSE 7860
# Streamlit 앱 실행
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.enableCORS=false"]
|