FROM python:3.10-slim WORKDIR /app # 시스템 패키지 설치 RUN apt-get update && apt-get install -y \ build-essential \ cmake \ git \ && rm -rf /var/lib/apt/lists/* # 캐시 디렉토리 생성 및 권한 설정 RUN mkdir -p /app/.cache && chmod 777 /app/.cache # Hugging Face 캐시 경로 설정 ENV HF_HOME=/app/.cache ENV TRANSFORMERS_CACHE=/app/.cache ENV HF_DATASETS_CACHE=/app/.cache # Python 패키지 설치 COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # 앱 파일 복사 COPY app.py . # 포트 노출 EXPOSE 7860 # FastAPI 실행 CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]