Piper-TTS-Spanish / Dockerfile
HirCoir's picture
Update Dockerfile
dec72bb verified
raw
history blame
No virus
138 Bytes
FROM python:3.9
WORKDIR /code
RUN pip install gradio
RUN pip install --no-cache-dir --upgrade -r gradio
COPY . .
CMD ["python3 app.py"]