pipertool / Dockerfile
Yahia El Ahmar
Piper TTS: Ultra-fast 1-2s voice synthesis
a959e4a
raw
history blame contribute delete
432 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
libsndfile1 \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application
COPY app.py .
# Expose port
EXPOSE 7860
# Run app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]