mirror of
https://github.com/wassname/TTS.git
synced 2026-09-10 11:50:20 +08:00
* Changes from jhlfrfufyfn <jhlfrfufyfn@gmail.com> * Recipe for Belarusian TTS --------- Co-authored-by: jhlfrfufyfn <jhlfrfufyfn@gmail.com>
19 lines
437 B
Docker
19 lines
437 B
Docker
FROM ubuntu:22.04
|
|
|
|
RUN apt -y update
|
|
RUN apt -y upgrade
|
|
RUN apt -y install --no-install-recommends pip ffmpeg openjdk-19-jre-headless
|
|
|
|
RUN mkdir /a/
|
|
ADD requirements*.txt /a/
|
|
WORKDIR /a/
|
|
RUN pip install -r requirements.txt -r requirements.dev.txt -r requirements.notebooks.txt
|
|
RUN pip install seaborn pydub notebook
|
|
|
|
RUN apt -y install --no-install-recommends gcc libpython3.10-dev
|
|
|
|
ADD runtime.sh /a/
|
|
|
|
WORKDIR /a/TTS/
|
|
CMD /a/runtime.sh
|