File size: 371 Bytes
27e8ebc 68f424c 27e8ebc 935a7c2 27e8ebc d84a49f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python:3.9-slim
# 安装ffmpeg相关依赖
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p audio_files
RUN chmod 777 audio_files
ENV TTS_HOST=${TTS_HOST}
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |