Xilixmeaty40 commited on
Commit
ba0e886
1 Parent(s): 44fa3cc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +29 -27
Dockerfile CHANGED
@@ -1,32 +1,34 @@
1
- FROM huggingface/autotrain-advanced:latest AS autotrain \
2
- FROM registry.hf.space/huggingface-projects-llama-2-13b-chat:latest AS llama \
3
- FROM registry.hf.space/bilalsardar-voice-cloning:latest AS voice_cloning \
4
- FROM registry.hf.space/thudm-glm-130b:latest AS glm \
5
- FROM registry.hf.space/bigcode-bigcode-models-leaderboard:latest AS bigcode_leaderboard \
6
- FROM registry.hf.space/huggingfaceh4-falcon-chat:latest AS falcon_chat \
7
- FROM registry.hf.space/myshell-ai-openvoice:latest AS openvoice \
8
- FROM registry.hf.space/merve-chatgpt-prompt-generator:latest AS prompt_generator \
9
- FROM registry.hf.space/vision-cair-minigpt4:latest AS vision_minigpt4 \
10
- FROM registry.hf.space/sczhou-codeformer:latest AS codeformer \
11
- FROM registry.hf.space/facebook-musicgen:latest AS musicgen \
12
- FROM registry.hf.space/sanchit-gandhi-whisper-jax:latest AS whisper_jax \
13
- FROM registry.hf.space/microsoft-hugginggpt:latest AS hugginggpt \
14
- FROM registry.hf.space/multimodalart-stable-video-diffusion:latest AS video_diffusion \
15
- FROM registry.hf.space/faceonlive-openkyc:latest AS openkyc \
16
- FROM registry.hf.space/briaai-bria-rmbg-1-4:latest AS rmbg \
17
- FROM registry.hf.space/dylanebert-lgm-mini:latest AS lgm_mini \
18
- FROM registry.hf.space/ap123-illusiondiffusion:latest AS illusiondiffusion \
19
- FROM registry.hf.space/stabilityai-stable-diffusion:latest AS stable_diffusion \
20
- FROM registry.hf.space/huggingfaceh4-open-llm-leaderboard:latest AS llm_leaderboard \
21
- FROM registry.hf.space/playgroundai-playground-v2-5:latest AS playground_v2 \
22
- FROM registry.hf.space/qwen-qwen1-5-72b-chat:latest AS qwen_chat \
23
- FROM registry.hf.space/tiiuae-falcon-180b-demo:latest AS falcon_demo \
24
- FROM registry.hf.space/tonic-starcoder2:latest AS starcoder2 \
25
- FROM registry.hf.space/mrfakename-rwkv-music:latest AS rwkv_music \
26
- FROM registry.hf.space/caball21-bigcode-starcoder:latest AS bigcode_starcoder \
27
- FROM registry.hf.space/bigcode-reasoning-with-starcoder:latest AS reasoning_starcoder
28
 
29
  # Install dependencies and run the application
 
 
30
  CMD \
31
  pip uninstall -y autotrain-advanced && \
32
  pip install -U autotrain-advanced && \
 
1
+ FROM huggingface/autotrain-advanced:latest AS autotrain
2
+ FROM registry.hf.space/huggingface-projects-llama-2-13b-chat:latest AS llama
3
+ FROM registry.hf.space/bilalsardar-voice-cloning:latest AS voice_cloning
4
+ FROM registry.hf.space/thudm-glm-130b:latest AS glm
5
+ FROM registry.hf.space/bigcode-bigcode-models-leaderboard:latest AS bigcode_leaderboard
6
+ FROM registry.hf.space/huggingfaceh4-falcon-chat:latest AS falcon_chat
7
+ FROM registry.hf.space/myshell-ai-openvoice:latest AS openvoice
8
+ FROM registry.hf.space/merve-chatgpt-prompt-generator:latest AS prompt_generator
9
+ FROM registry.hf.space/vision-cair-minigpt4:latest AS vision_minigpt4
10
+ FROM registry.hf.space/sczhou-codeformer:latest AS codeformer
11
+ FROM registry.hf.space/facebook-musicgen:latest AS musicgen
12
+ FROM registry.hf.space/sanchit-gandhi-whisper-jax:latest AS whisper_jax
13
+ FROM registry.hf.space/microsoft-hugginggpt:latest AS hugginggpt
14
+ FROM registry.hf.space/multimodalart-stable-video-diffusion:latest AS video_diffusion
15
+ FROM registry.hf.space/faceonlive-openkyc:latest AS openkyc
16
+ FROM registry.hf.space/briaai-bria-rmbg-1-4:latest AS rmbg
17
+ FROM registry.hf.space/dylanebert-lgm-mini:latest AS lgm_mini
18
+ FROM registry.hf.space/ap123-illusiondiffusion:latest AS illusiondiffusion
19
+ FROM registry.hf.space/stabilityai-stable-diffusion:latest AS stable_diffusion
20
+ FROM registry.hf.space/huggingfaceh4-open-llm-leaderboard:latest AS llm_leaderboard
21
+ FROM registry.hf.space/playgroundai-playground-v2-5:latest AS playground_v2
22
+ FROM registry.hf.space/qwen-qwen1-5-72b-chat:latest AS qwen_chat
23
+ FROM registry.hf.space/tiiuae-falcon-180b-demo:latest AS falcon_demo
24
+ FROM registry.hf.space/tonic-starcoder2:latest AS starcoder2
25
+ FROM registry.hf.space/mrfakename-rwkv-music:latest AS rwkv_music
26
+ FROM registry.hf.space/caball21-bigcode-starcoder:latest AS bigcode_starcoder
27
+ FROM registry.hf.space/bigcode-reasoning-with-starcoder:latest AS reasoning_starcoder
28
 
29
  # Install dependencies and run the application
30
+ FROM autotrain AS final
31
+
32
  CMD \
33
  pip uninstall -y autotrain-advanced && \
34
  pip install -U autotrain-advanced && \