CoolFace
Apppublic

bign/webui-docker

sourceHugging Faceupdated 4y agoView on Hugging Face
0likes
Dockerfile.Private.Nightly.CPU44 linesDownload Raw Back to root
1# Dockerfile Private Nightly CPU2 3# https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/11.7.1/ubuntu2204/devel/cudnn8/Dockerfile4FROM nvidia/cuda:11.7.1-cudnn8-devel-ubuntu22.045ENV DEBIAN_FRONTEND noninteractive6 7WORKDIR /content8 9RUN apt-get update -y && apt-get upgrade -y && apt-get install -y libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 && pip3 install --upgrade pip10RUN pip install https://github.com/camenduru/stable-diffusion-webui-colab/releases/download/0.0.16/xformers-0.0.16+814314d.d20230118-cp310-cp310-linux_x86_64.whl11RUN pip install --pre triton12RUN pip install numexpr13 14RUN git clone https://github.com/camenduru/stable-diffusion-webui15RUN sed -i -e 's/    start()/    #start()/g' /content/stable-diffusion-webui/launch.py16RUN cd stable-diffusion-webui && python launch.py --skip-torch-cuda-test17 18# ----------------------------Delete this block if you don't want to see the extra header----------------------------19ADD https://github.com/camenduru/webui-docker/raw/main/env_patch.py /content/env_patch.py20RUN sed -i -e '/import image_from_url_text/r /content/env_patch.py' /content/stable-diffusion-webui/modules/ui.py21ADD https://github.com/camenduru/webui-docker/raw/main/header_patch.py /content/header_patch.py22RUN sed -i -e '/demo:/r /content/header_patch.py' /content/stable-diffusion-webui/modules/ui.py23# -------------------------------------------------------------------------------------------------------------------24 25ADD https://raw.githubusercontent.com/camenduru/stable-diffusion-webui-scripts/main/run_n_times.py /content/stable-diffusion-webui/scripts/run_n_times.py26RUN git clone https://github.com/deforum-art/deforum-for-automatic1111-webui /content/stable-diffusion-webui/extensions/deforum-for-automatic1111-webui27RUN git clone https://github.com/yfszzx/stable-diffusion-webui-images-browser /content/stable-diffusion-webui/extensions/stable-diffusion-webui-images-browser28RUN git clone https://github.com/camenduru/stable-diffusion-webui-huggingface /content/stable-diffusion-webui/extensions/stable-diffusion-webui-huggingface29RUN git clone https://github.com/Vetchems/sd-civitai-browser /content/stable-diffusion-webui/extensions/sd-civitai-browser30 31COPY config.json /content/config.json32COPY ui-config.json /content/ui-config.json33 34ADD https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.5-pruned.ckpt /content/stable-diffusion-webui/models/Stable-diffusion/anything-v4.5-pruned.ckpt35ADD https://huggingface.co/andite/anything-v4.0/resolve/main/anything-v4.0.vae.pt /content/stable-diffusion-webui/models/Stable-diffusion/anything-v4.5-pruned.vae.pt36 37RUN adduser --disabled-password --gecos '' user38RUN chown -R user:user /content39RUN chmod -R 777 /content40USER user41 42EXPOSE 786043 44CMD cd /content/stable-diffusion-webui && python webui.py --use-cpu all --no-half --listen --disable-console-progressbars --ui-config-file /content/ui-config.json --ui-settings-file /content/config.json