| | FROM python:3.10-slim |
| |
|
| | WORKDIR /app |
| |
|
| | |
| | ENV PYTHONDONTWRITEBYTECODE=1 |
| | ENV PYTHONUNBUFFERED=1 |
| | ENV HF_HOME=/tmp/huggingface |
| | ENV TORCH_HOME=/tmp/torch |
| | ENV COQUI_TOS_AGREED=1 |
| | ENV TTS_HOME=/tmp/tts_models |
| |
|
| | |
| | RUN mkdir -p /tmp/tts_models /tmp/huggingface /tmp/torch /tmp/voices /tmp/output && \ |
| | chmod 777 /tmp/tts_models /tmp/huggingface /tmp/torch /tmp/voices /tmp/output |
| |
|
| | |
| | RUN apt-get update && apt-get install -y \ |
| | curl \ |
| | ffmpeg \ |
| | libsndfile1 \ |
| | && rm -rf /var/lib/apt/lists/* \ |
| | && apt-get clean |
| |
|
| | |
| | COPY requirements.txt . |
| |
|
| | |
| | RUN pip install --no-cache-dir -r requirements.txt |
| |
|
| | |
| | COPY app.py . |
| |
|
| | |
| | RUN useradd -m -u 1000 user |
| | USER user |
| |
|
| | EXPOSE 7860 |
| |
|
| | |
| | HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \ |
| | CMD curl -f http://localhost:7860/api/health || exit 1 |
| |
|
| | CMD ["python", "app.py"] |