Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -12,8 +12,9 @@ RUN adduser --disabled-password --gecos '' zebraslive && \
|
|
12 |
apt update -y && add-apt-repository -y ppa:git-core/ppa && apt update -y && apt install -y aria2 git git-lfs unzip ffmpeg
|
13 |
|
14 |
USER zebraslive
|
15 |
-
RUN
|
16 |
-
|
|
|
17 |
|
18 |
RUN pip install -q torch==2.4.0+cu121 torchvision==0.19.0+cu121 torchaudio==2.4.0+cu121 torchtext==0.18.0 torchdata==0.8.0 --extra-index-url https://download.pytorch.org/whl/cu121 \
|
19 |
tqdm==4.66.5 numpy==1.26.3 imageio==2.35.1 imageio-ffmpeg==0.5.1 xformers==0.0.27.post2 diffusers==0.30.3 moviepy==1.0.3 transformers==4.44.2 accelerate==0.33.0 sentencepiece==0.2.0 pillow==9.5.0 runpod && \
|
|
|
12 |
apt update -y && add-apt-repository -y ppa:git-core/ppa && apt update -y && apt install -y aria2 git git-lfs unzip ffmpeg
|
13 |
|
14 |
USER zebraslive
|
15 |
+
RUN mkdir ./Cogv
|
16 |
+
RUN git clone https://github.com/aigc-apps/CogVideoX-Fun ./Cogv
|
17 |
+
COPY ./Cogv /content
|
18 |
|
19 |
RUN pip install -q torch==2.4.0+cu121 torchvision==0.19.0+cu121 torchaudio==2.4.0+cu121 torchtext==0.18.0 torchdata==0.8.0 --extra-index-url https://download.pytorch.org/whl/cu121 \
|
20 |
tqdm==4.66.5 numpy==1.26.3 imageio==2.35.1 imageio-ffmpeg==0.5.1 xformers==0.0.27.post2 diffusers==0.30.3 moviepy==1.0.3 transformers==4.44.2 accelerate==0.33.0 sentencepiece==0.2.0 pillow==9.5.0 runpod && \
|