kokoro-tts-api / Dockerfile
eder0782's picture
Upload 2 files
8ea08ac verified
raw
history blame
295 Bytes
FROM nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu20.04
RUN apt-get update && apt-get install -y python3 python3-pip espeak-ng && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
COPY main.py .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python3", "main.py"]