speechlibProject / Dockerfile
pgkwon1's picture
Upload 4 files
4ebed0f verified
raw
history blame contribute delete
402 Bytes
FROM python:3.10-slim
WORKDIR /app
# 시스템 패키지 설치
RUN apt-get update && apt-get install -y \
ffmpeg \
git \
&& rm -rf /var/lib/apt/lists/*
# Python 패키지 설치
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 앱 복사
COPY app.py .
# 포트 노출
EXPOSE 7860
# 실행
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]