yt / Dockerfile
ayush77uh's picture
Initial commit
fc4c0b5
Raw
History Blame Contribute Delete
427 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
espeak-ng \
ffmpeg \
git \
&& rm -rf /var/lib/apt/lists/*
# Install python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application and assets
COPY . .
# Environment Variables
ENV COQUI_TOS_AGREED=1
# Run the application
CMD ["python", "app.py"]