-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM nvidia/cuda:12.0.0-cudnn8-devel-ubuntu22.04 | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update -y && \ | ||
apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 && \ | ||
pip install -q torch==2.0.1+cu118 torchvision==0.15.2+cu118 torchaudio==2.0.2+cu118 torchtext==0.15.2 torchdata==0.6.1 --extra-index-url https://download.pytorch.org/whl/cu118 && \ | ||
pip install xformers==0.0.20 triton==2.0.0 packaging==23.1 && \ | ||
adduser --disabled-password --gecos '' user && \ | ||
mkdir /content && \ | ||
chown -R user:user /content | ||
|
||
WORKDIR /content | ||
USER user | ||
|
||
RUN git clone -b v2.6 https://github.com/camenduru/stable-diffusion-webui && \ | ||
sed -i -e 's/ start()/ #start()/g' /content/stable-diffusion-webui/launch.py && \ | ||
cd /content/stable-diffusion-webui && \ | ||
python launch.py --skip-torch-cuda-test && \ | ||
git reset --hard | ||
|
||
# RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/ckpt/juggernaut-xl/resolve/main/juggernautXL_version2.safetensors -d /content/stable-diffusion-webui/models/Stable-diffusion -o juggernautXL_version2.safetensors | ||
# CMD cd /content/stable-diffusion-webui && python launch.py --xformers --cors-allow-origins=* --api |