mirror of
https://github.com/coqui-ai/TTS.git
synced 2026-02-24 20:19:54 +01:00
* Update requirements
* Update CI for p3.10
* Update numpy requirement
* Drop 🐍p3.6 support
Numpy also dropped support for p3.6
* Bind cython v0.29.28
* Bind pyworld to v0.2.10
> 0.2.10 is not p3.10.x compatible
* Update Dockerfile
13 lines
485 B
Docker
13 lines
485 B
Docker
FROM nvcr.io/nvidia/pytorch:22.03-py3
|
|
RUN apt-get update && apt-get install -y --no-install-recommends espeak espeak-ng && rm -rf /var/lib/apt/lists/*
|
|
RUN pip install llvmlite --ignore-installed
|
|
WORKDIR /root
|
|
COPY requirements.txt /root
|
|
COPY requirements.dev.txt /root
|
|
COPY requirements.notebooks.txt /root
|
|
RUN ["/bin/bash", "-c", "pip install -r <(cat requirements.txt requirements.dev.txt requirements.notebooks.txt)"]
|
|
COPY . /root
|
|
RUN make install
|
|
ENTRYPOINT ["tts"]
|
|
CMD ["--help"]
|