mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-03 14:14:18 +01:00
Update Dockerfile
This commit is contained in:
parent
802d0bcd68
commit
257f07372d
|
|
@ -12,6 +12,15 @@ RUN --mount=type=cache,target=/root/.cache/pip \
|
|||
git reset --hard 276f8fce9f5a80b500947fb5745a4dde9e84622d && \
|
||||
pip install -r requirements.txt
|
||||
|
||||
# Checkpoint
|
||||
RUN wget -c https://huggingface.co/jzli/DreamShaper-8/resolve/main/dreamshaper_8.safetensors?download=true -P ./models/checkpoints/
|
||||
# VAE
|
||||
RUN wget -c https://huggingface.co/stabilityai/sdxl-vae/blob/main/sdxl_vae.safetensors -P ./models/vae/
|
||||
# Custom nodes
|
||||
RUN cd custom_nodes && git clone https://github.com/Yanick112/ComfyUI-ToSVG.git
|
||||
# ComfyUI Manager
|
||||
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
|
||||
|
||||
WORKDIR ${ROOT}
|
||||
COPY . /docker/
|
||||
RUN chmod u+x /docker/entrypoint.sh && cp /docker/extra_model_paths.yaml ${ROOT}
|
||||
|
|
|
|||
Loading…
Reference in a new issue