| |
|
|
| FROM pytorch/pytorch:2.1.0-cuda12.1-cudnn8-devel |
| ARG DEBIAN_FRONTEND=noninteractive |
|
|
| RUN apt-get update && \ |
| apt-get install --no-install-recommends -y sox libsox-fmt-all curl wget gcc git git-lfs build-essential libaio-dev libsndfile1 ssh ffmpeg && \ |
| apt-get clean && apt-get -y autoremove |
|
|
| WORKDIR /app |
| COPY requirements.txt . |
| RUN python -m pip install --verbose -r requirements.txt |
| RUN python -m pip cache purge |
|
|
| |
| |
|
|
| RUN python -m pip install spaces |
|
|
| COPY InstallFromReadme.sh . |
| COPY README.md . |
| RUN chmod +x InstallFromReadme.sh |
| RUN ./InstallFromReadme.sh |
|
|
| COPY xtts.py . |
| COPY app.py . |
|
|
| |
| |
|
|
| ENV NUM_THREADS=2 |
| EXPOSE 80 |
| CMD ["python","app.py"] |
|
|