ILRDF-Avatar-Backend / Dockerfile
ILRDF-Lowking's picture
Update Dockerfile
bb9b65c verified
Raw
History Blame Contribute Delete
403 Bytes
FROM python:3.10-slim
# 安裝系統層級的 ffmpeg(音訊轉換必備)與 基礎工具
RUN apt-get update && apt-get install -y \
ffmpeg \
curl \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]