Piper-TTS-Spanish / Dockerfile
HirCoir's picture
Update Dockerfile
18bb8fb verified
raw
history blame
166 Bytes
FROM python:3.12
WORKDIR /code
RUN pip install --upgrade pip
RUN pip install gradio
RUN pip install --no-cache-dir --upgrade gradio
COPY . .
CMD ["python3 app.py"]