Gregniuki commited on
Commit
8c200a1
·
verified ·
1 Parent(s): 1467f64

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -46
Dockerfile DELETED
@@ -1,46 +0,0 @@
1
- FROM debian:bullseye-slim
2
- ENV NVIDIA_VISIBLE_DEVICES all
3
- ENV NVIDIA_DRIVER_CAPABILITIES compute,utility
4
- ENV NVIDIA_REQUIRE_CUDA "cuda>=8.0"
5
- ENV LD_LIBRARY_PATH=/usr/local/cuda-11.8/targets/x86_64-linux/lib:/usr/local/cuda-11.8/targets/x86_64-linux/include:/usr/local/cuda/include:/usr/local/cuda-11.8:/usr/local/cuda/lib:/usr/local/cuda/lib64:$LD_LIBRARY_PATH
6
-
7
- RUN apt-get update && apt-get install -y gnupg2 curl
8
-
9
- RUN curl -fsSL https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64/7fa2af80.pub | gpg --dearmor -o /usr/share/keyrings/cuda-archive-keyring.gpg
10
-
11
- # Add the NVIDIA repository to the APT sources list
12
- RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub
13
-
14
- RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64/7fa2af80.pub
15
-
16
- RUN echo "deb https://developer.download.nvidia.com/compute/cuda/repos/debian11/x86_64 /" > /etc/apt/sources.list.d/cuda.list
17
-
18
- # Install FFmpeg
19
-
20
- RUN apt-get update && \
21
- apt-get install -y python3-pip ffmpeg libcublas-11-8 libcudnn8=8.6.0.163-1+cuda11.8
22
- #libcudnn8=8.8.0.121-1+cuda11.8
23
-
24
- USER root
25
-
26
- ARG DEBIAN_FRONTEND=noninteractive
27
-
28
- LABEL github_repo="https://github.com/SWivid/F5-TTS"
29
-
30
- RUN set -x \
31
- && apt-get update \
32
- && apt-get -y install wget curl man git less openssl libssl-dev unzip unar build-essential aria2 tmux vim \
33
- && apt-get install -y openssh-server sox libsox-fmt-all libsox-fmt-mp3 libsndfile1-dev ffmpeg \
34
- && rm -rf /var/lib/apt/lists/* \
35
- && apt-get clean
36
-
37
- WORKDIR /workspace
38
-
39
- RUN git clone https://github.com/SWivid/F5-TTS.git \
40
- && cd F5-TTS \
41
- && pip install -e .[eval]
42
-
43
- ENV SHELL=/bin/bash
44
-
45
-
46
- WORKDIR /workspace/F5-TTS