Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +18 -0
Dockerfile
CHANGED
@@ -128,6 +128,24 @@ RUN echo "Downloading checkpoints..."
|
|
128 |
RUN wget -c https://huggingface.co/h94/IP-Adapter/resolve/main/models/image_encoder/model.safetensors -O ./models/clip_vision/CLIP-ViT-H-14-laion2B-s32B-b79K.safetensors
|
129 |
RUN wget -c https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/image_encoder/model.safetensors -O ./models/clip_vision/CLIP-ViT-bigG-14-laion2B-39B-b160k.safetensors
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
# RUN wget -c https://huggingface.co/thibaud/controlnet-openpose-sdxl-1.0/resolve/main/diffusion_pytorch_model.bin -O ./models/controlnet/OpenPoseXL2.bin
|
133 |
# GLIGEN
|
|
|
128 |
RUN wget -c https://huggingface.co/h94/IP-Adapter/resolve/main/models/image_encoder/model.safetensors -O ./models/clip_vision/CLIP-ViT-H-14-laion2B-s32B-b79K.safetensors
|
129 |
RUN wget -c https://huggingface.co/h94/IP-Adapter/resolve/main/sdxl_models/image_encoder/model.safetensors -O ./models/clip_vision/CLIP-ViT-bigG-14-laion2B-39B-b160k.safetensors
|
130 |
|
131 |
+
# Download and save with a specific filename using wget -O
|
132 |
+
|
133 |
+
# Download the first file and save it as model_safe_tensor.safetensor
|
134 |
+
wget -c "https://civitai.com/api/download/models/329685?type=Model&format=SafeTensor&token=f7b174903db6ed12ea56cc106c7dffad" -O ./models/checkpoints/wildcardxXLTURBO_wildcardxXLTURBOV10.safetensors
|
135 |
+
|
136 |
+
# Download the second file and save it as sai_xl_depth_256lora.safetensors
|
137 |
+
wget -c https://huggingface.co/lllyasviel/sd_control_collection/blob/main/sai_xl_depth_256lora.safetensors -O ./models/controlnet/sdxl/sai_xl_depth_256lora.safetensors
|
138 |
+
|
139 |
+
# Download the third file and save it as OpenPoseXL2.safetensors
|
140 |
+
wget -c https://huggingface.co/thibaud/controlnet-openpose-sdxl-1.0/blob/main/OpenPoseXL2.safetensors -O ./models/controlnet/sdxl/OpenPoseXL2.safetensors
|
141 |
+
|
142 |
+
# Download the fourth file and save it as control_sd15_depth.pth
|
143 |
+
wget -c https://huggingface.co/lllyasviel/ControlNet/blob/main/models/control_sd15_depth.pth -O ./models/controlnet/control_sd15_depth.pth
|
144 |
+
|
145 |
+
# Download the fifth file and save it as control_sd15_openpose.pth
|
146 |
+
wget -c https://huggingface.co/lllyasviel/ControlNet/blob/main/models/control_sd15_openpose.pth -O ./models/controlnet/control_sd15_openpose.pth
|
147 |
+
|
148 |
+
|
149 |
|
150 |
# RUN wget -c https://huggingface.co/thibaud/controlnet-openpose-sdxl-1.0/resolve/main/diffusion_pytorch_model.bin -O ./models/controlnet/OpenPoseXL2.bin
|
151 |
# GLIGEN
|