-
Notifications
You must be signed in to change notification settings - Fork 915
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18f526d
commit 5fa5682
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM pytorch/pytorch:2.4.0-cuda12.4-cudnn9-devel | ||
|
||
USER root | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
LABEL github_repo="https://github.com/SWivid/F5-TTS" | ||
|
||
RUN set -x \ | ||
&& apt-get update \ | ||
&& apt-get -y install wget curl man git less openssl libssl-dev unzip unar build-essential aria2 tmux vim \ | ||
&& apt-get install -y openssh-server sox libsox-fmt-all libsox-fmt-mp3 libsndfile1-dev ffmpeg \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& apt-get clean | ||
|
||
WORKDIR /workspace | ||
|
||
RUN git clone https://github.com/SWivid/F5-TTS.git \ | ||
&& cd F5-TTS \ | ||
&& pip install --no-cache-dir -r requirements.txt \ | ||
&& pip install --no-cache-dir -r requirements_eval.txt | ||
|
||
ENV SHELL=/bin/bash | ||
|
||
WORKDIR /workspace/F5-TTS |