FROM huggingface/autotrain-advanced:latest AS autotrain FROM registry.hf.space/huggingface-projects-llama-2-13b-chat:latest AS llama FROM registry.hf.space/bilalsardar-voice-cloning:latest AS voice_cloning FROM registry.hf.space/thudm-glm-130b:latest AS glm FROM registry.hf.space/bigcode-bigcode-models-leaderboard:latest AS bigcode_leaderboard FROM registry.hf.space/huggingfaceh4-falcon-chat:latest AS falcon_chat FROM registry.hf.space/myshell-ai-openvoice:latest AS openvoice FROM registry.hf.space/merve-chatgpt-prompt-generator:latest AS prompt_generator FROM registry.hf.space/vision-cair-minigpt4:latest AS vision_minigpt4 FROM registry.hf.space/sczhou-codeformer:latest AS codeformer FROM registry.hf.space/facebook-musicgen:latest AS musicgen FROM registry.hf.space/sanchit-gandhi-whisper-jax:latest AS whisper_jax FROM registry.hf.space/microsoft-hugginggpt:latest AS hugginggpt FROM registry.hf.space/multimodalart-stable-video-diffusion:latest AS video_diffusion FROM registry.hf.space/faceonlive-openkyc:latest AS openkyc FROM registry.hf.space/briaai-bria-rmbg-1-4:latest AS rmbg FROM registry.hf.space/dylanebert-lgm-mini:latest AS lgm_mini FROM registry.hf.space/ap123-illusiondiffusion:latest AS illusiondiffusion FROM registry.hf.space/stabilityai-stable-diffusion:latest AS stable_diffusion FROM registry.hf.space/huggingfaceh4-open-llm-leaderboard:latest AS llm_leaderboard FROM registry.hf.space/playgroundai-playground-v2-5:latest AS playground_v2 FROM registry.hf.space/qwen-qwen1-5-72b-chat:latest AS qwen_chat FROM registry.hf.space/tiiuae-falcon-180b-demo:latest AS falcon_demo FROM registry.hf.space/tonic-starcoder2:latest AS starcoder2 FROM registry.hf.space/mrfakename-rwkv-music:latest AS rwkv_music FROM registry.hf.space/caball21-bigcode-starcoder:latest AS bigcode_starcoder FROM registry.hf.space/bigcode-reasoning-with-starcoder:latest AS reasoning_starcoder # Install dependencies and run the application FROM autotrain AS final CMD \ pip uninstall -y autotrain-advanced && \ pip install -U autotrain-advanced && \ uvicorn autotrain.app:app --host 0.0.0.0 --port 7860 --reload --workers 4