saicharan1234 commited on
Commit
6584ec5
·
verified ·
1 Parent(s): 78b2286

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -15
Dockerfile CHANGED
@@ -128,22 +128,12 @@ 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
- # 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
 
 
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
+ RUN wget -c "https://civitai.com/api/download/models/329685?type=Model&format=SafeTensor&token=f7b174903db6ed12ea56cc106c7dffad" -O ./models/checkpoints/wildcardxXLTURBO_wildcardxXLTURBOV10.safetensors
132
+ RUN 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
133
+ RUN wget -c https://huggingface.co/thibaud/controlnet-openpose-sdxl-1.0/blob/main/OpenPoseXL2.safetensors -O ./models/controlnet/sdxl/OpenPoseXL2.safetensors
134
+ RUN wget -c https://huggingface.co/lllyasviel/ControlNet/blob/main/models/control_sd15_depth.pth -O ./models/controlnet/control_sd15_depth.pth
135
+ RUN wget -c https://huggingface.co/lllyasviel/ControlNet/blob/main/models/control_sd15_openpose.pth -O ./models/controlnet/control_sd15_openpose.pth
136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
 
138
 
139