Update Dockerfile
Browse files- Dockerfile +6 -5
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
# Dockerfile (VERSÃO FINAL COM
|
| 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
|
| 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.
|
| 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.
|
| 55 |
-
|
|
|
|
|
|
| 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"]
|