Spaces:
Runtime error
Runtime error
| # Dockerfile Private Nightly CPU | |
| # https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/11.7.1/ubuntu2204/devel/cudnn8/Dockerfile | |
| # FROM nvidia/cuda:11.7.1-cudnn8-devel-ubuntu22.04 | |
| # https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/11.7.1/ubuntu2204/base/Dockerfile | |
| FROM nvidia/cuda:11.7.1-base-ubuntu22.04 | |
| ENV DEBIAN_FRONTEND noninteractive | |
| RUN 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 && rm -rf /var/lib/apt/lists/* | |
| RUN adduser --disabled-password --gecos '' user | |
| RUN mkdir /content && chown -R user:user /content | |
| WORKDIR /content | |
| USER user | |
| RUN pip3 install --upgrade pip | |
| RUN 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.whl | |
| RUN pip install --pre triton | |
| RUN pip install numexpr | |
| RUN git clone -b v2.0 https://github.com/camenduru/stable-diffusion-webui | |
| RUN sed -i -e 's/ start()/ #start()/g' /content/stable-diffusion-webui/launch.py | |
| RUN cd stable-diffusion-webui && python launch.py --skip-torch-cuda-test | |
| # ----------------------------Delete this block if you don't want to see the extra header---------------------------- | |
| ADD --chown=user https://github.com/camenduru/webui-docker/raw/main/env_patch.py /content/env_patch.py | |
| RUN sed -i -e '/import image_from_url_text/r /content/env_patch.py' /content/stable-diffusion-webui/modules/ui.py | |
| ADD --chown=user https://github.com/camenduru/webui-docker/raw/main/header_patch.py /content/header_patch.py | |
| RUN sed -i -e '/demo:/r /content/header_patch.py' /content/stable-diffusion-webui/modules/ui.py | |
| # ------------------------------------------------------------------------------------------------------------------- | |
| ADD --chown=user https://raw.githubusercontent.com/camenduru/stable-diffusion-webui-scripts/main/run_n_times.py /content/stable-diffusion-webui/scripts/run_n_times.py | |
| RUN git clone https://github.com/deforum-art/deforum-for-automatic1111-webui /content/stable-diffusion-webui/extensions/deforum-for-automatic1111-webui | |
| RUN git clone https://github.com/AlUlkesh/stable-diffusion-webui-images-browser /content/stable-diffusion-webui/extensions/stable-diffusion-webui-images-browser | |
| RUN git clone https://github.com/camenduru/stable-diffusion-webui-huggingface /content/stable-diffusion-webui/extensions/stable-diffusion-webui-huggingface | |
| RUN git clone -b v2.0 https://github.com/camenduru/sd-civitai-browser /content/stable-diffusion-webui/extensions/sd-civitai-browser | |
| RUN git clone https://github.com/kohya-ss/sd-webui-additional-networks /content/stable-diffusion-webui/extensions/sd-webui-additional-networks | |
| COPY --chown=user config.json /content/config.json | |
| COPY --chown=user ui-config.json /content/ui-config.json | |
| ADD --chown=user 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.ckpt | |
| ADD --chown=user 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.pt | |
| EXPOSE 7860 | |
| CMD 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 |