File size: 548 Bytes
c967100 90f5178 c967100 90f5178 c967100 90f5178 c967100 90f5178 3274b6b 7ba1133 15edaa2 c967100 90f5178 15edaa2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
FROM python:3.10-slim
# 设置工作目录
WORKDIR /code
# 安装系统依赖
RUN apt-get update && apt-get install -y --no-install-recommends libsndfile1 && \
rm -rf /var/lib/apt/lists/*
# 复制依赖文件并安装 Python 依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码和模型
COPY app.py .
COPY ct2_model/ ct2_model/
COPY whisper_processor/ whisper_processor/
# 暴露端口
EXPOSE 7860
# 启动 FastAPI 应用
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|