Piper-TTS-Spanish / Dockerfile
HirCoir's picture
Update Dockerfile
10de322 verified
raw
history blame
No virus
176 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 . /code
CMD ["python3 /code/app.py"]