Update Dockerfile

This commit is contained in:
Parameswaran 2024-06-25 23:52:17 +05:30 committed by GitHub
parent 802d0bcd68
commit 257f07372d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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}