TTS-Talker / Dockerfile
Quang Long
update src/f5_tts, app.py, app_tts.py, add pyproject.toml
b8c51d6
FROM nvidia/cuda:11.7.1-cudnn8-devel-ubuntu22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends \
git \
zip \
unzip \
git-lfs \
wget \
curl \
# ffmpeg \
ffmpeg \
x264 \
# python build dependencies \
build-essential \
libssl-dev \
zlib1g-dev \
libbz2-dev \
libreadline-dev \
libsqlite3-dev \
libncursesw5-dev \
xz-utils \
tk-dev \
libxml2-dev \
libxmlsec1-dev \
libffi-dev \
liblzma-dev \
cron && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:${PATH}
WORKDIR ${HOME}/app
RUN curl https://pyenv.run | bash
ENV PATH=${HOME}/.pyenv/shims:${HOME}/.pyenv/bin:${PATH}
ENV PYTHON_VERSION=3.10.9
RUN pyenv install ${PYTHON_VERSION} && \
pyenv global ${PYTHON_VERSION} && \
pyenv rehash && \
pip install --no-cache-dir -U pip setuptools wheel
RUN pip install --no-cache-dir -U numpy==1.23.5 torch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0
COPY --chown=1000 requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -U -r /tmp/requirements.txt
COPY --chown=1000 . ${HOME}/app
RUN pip install --no-cache-dir -e .
RUN chmod +x ${HOME}/app/utils/clear_results.sh ${HOME}/app/utils/entrypoint.sh
RUN ls -a
ENV PYTHONPATH=${HOME}/app \
PYTHONUNBUFFERED=1 \
GRADIO_ALLOW_FLAGGING=never \
GRADIO_NUM_PORTS=1 \
GRADIO_SERVER_NAME=0.0.0.0 \
GRADIO_THEME=huggingface \
SYSTEM=spaces
USER root
ENTRYPOINT ["/home/user/app/utils/entrypoint.sh"]
CMD ["python", "app.py"]