Spaces:
Paused
Paused
File size: 437 Bytes
45ee559 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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
|