aducsdr commited on
Commit
5a9416b
·
verified ·
1 Parent(s): 767ab4c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -5
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- # Dockerfile (VERSÃO FINAL COM VÍDEOS DE EXEMPLO)
2
 
3
  # 1. COMEÇAR COM A BASE CORRETA
4
  FROM nvidia/cuda:12.1.1-devel-ubuntu22.04
@@ -32,7 +32,7 @@ RUN conda env create -f environment.yml && conda clean --all -y
32
  # 8. INSTALAR FLASH_ATTN DENTRO DO AMBIENTE
33
  RUN conda run -n seedvr pip install "flash_attn==2.5.9.post1" --no-build-isolation
34
 
35
- # 9. DEFINIR O AMBIENTE CONDA COMO PADRÃO
36
  SHELL ["conda", "run", "-n", "seedvr", "/bin/bash", "-c"]
37
 
38
  # 10. PREPARAR O APLICATIVO
@@ -43,7 +43,7 @@ WORKDIR /app/SeedVR
43
  # 11. BAIXAR O MODELO DURANTE A CONSTRUÇÃO
44
  RUN huggingface-cli download ByteDance-Seed/SeedVR2-3B --local-dir ckpts --local-dir-use-symlinks False
45
 
46
- # 12. !!! NOVO !!! BAIXAR OS VÍDEOS DE EXEMPLO
47
  RUN wget -O 01.mp4 https://huggingface.co/datasets/Iceclear/SeedVR_VideoDemos/resolve/main/seedvr_videos_crf23/aigc1k/23_1_lq.mp4 && \
48
  wget -O 02.mp4 https://huggingface.co/datasets/Iceclear/SeedVR_VideoDemos/resolve/main/seedvr_videos_crf23/aigc1k/28_1_lq.mp4 && \
49
  wget -O 03.mp4 https://huggingface.co/datasets/Iceclear/SeedVR_VideoDemos/resolve/main/seedvr_videos_crf23/aigc1k/2_1_lq.mp4
@@ -51,5 +51,6 @@ RUN wget -O 01.mp4 https://huggingface.co/datasets/Iceclear/SeedVR_VideoDemos/re
51
  # 13. COPIAR O CÓDIGO DO NOSSO APP
52
  COPY app.py .
53
 
54
- # 14. DEFINIR O COMANDO DE EXECUÇÃO
55
- CMD ["python", "app.py"]
 
 
1
+ # Dockerfile (VERSÃO FINAL COM O CMD CORRIGIDO)
2
 
3
  # 1. COMEÇAR COM A BASE CORRETA
4
  FROM nvidia/cuda:12.1.1-devel-ubuntu22.04
 
32
  # 8. INSTALAR FLASH_ATTN DENTRO DO AMBIENTE
33
  RUN conda run -n seedvr pip install "flash_attn==2.5.9.post1" --no-build-isolation
34
 
35
+ # 9. DEFINIR O SHELL PADRÃO PARA OS COMANDOS 'RUN'
36
  SHELL ["conda", "run", "-n", "seedvr", "/bin/bash", "-c"]
37
 
38
  # 10. PREPARAR O APLICATIVO
 
43
  # 11. BAIXAR O MODELO DURANTE A CONSTRUÇÃO
44
  RUN huggingface-cli download ByteDance-Seed/SeedVR2-3B --local-dir ckpts --local-dir-use-symlinks False
45
 
46
+ # 12. BAIXAR OS VÍDEOS DE EXEMPLO
47
  RUN wget -O 01.mp4 https://huggingface.co/datasets/Iceclear/SeedVR_VideoDemos/resolve/main/seedvr_videos_crf23/aigc1k/23_1_lq.mp4 && \
48
  wget -O 02.mp4 https://huggingface.co/datasets/Iceclear/SeedVR_VideoDemos/resolve/main/seedvr_videos_crf23/aigc1k/28_1_lq.mp4 && \
49
  wget -O 03.mp4 https://huggingface.co/datasets/Iceclear/SeedVR_VideoDemos/resolve/main/seedvr_videos_crf23/aigc1k/2_1_lq.mp4
 
51
  # 13. COPIAR O CÓDIGO DO NOSSO APP
52
  COPY app.py .
53
 
54
+ # 14. !!! CORREÇÃO FINAL !!!
55
+ # DEFINIR O COMANDO DE EXECUÇÃO PARA RODAR DENTRO DO AMBIENTE CONDA
56
+ CMD ["conda", "run", "-n", "seedvr", "python", "app.py"]