KU_SW_Academy / Dockerfile
heybaeheef's picture
Upload 9 files
3cc9d6f verified
raw
history blame contribute delete
458 Bytes
FROM python:3.10-slim
WORKDIR /app
# 시스템 패키지 설치
RUN apt-get update && apt-get install -y \
libsndfile1 \
ffmpeg \
git \
&& rm -rf /var/lib/apt/lists/*
# Python 패키지 설치
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 앱 코드 복사
COPY . .
# Hugging Face Spaces는 포트 7860 사용
EXPOSE 7860
# 서버 실행
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]