Create Dockerfile
Browse files- Dockerfile +24 -0
Dockerfile
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Dockerfile Public A10G
|
2 |
+
|
3 |
+
# https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/12.2.0/ubuntu2204/base/Dockerfile
|
4 |
+
FROM nvidia/cuda:12.2.0-base-ubuntu22.04
|
5 |
+
ENV DEBIAN_FRONTEND noninteractive
|
6 |
+
|
7 |
+
RUN apt-get update -y \
|
8 |
+
apt-get install -y aria2 libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 \
|
9 |
+
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 \
|
10 |
+
pip install xformers==0.0.20 triton==2.0.0 \
|
11 |
+
adduser --disabled-password --gecos '' user \
|
12 |
+
mkdir /content \
|
13 |
+
chown -R user:user /content \
|
14 |
+
git clone -b v2.6 https://github.com/camenduru/stable-diffusion-webui /content/stable-diffusion-webui \
|
15 |
+
sed -i -e 's/ start()/ #start()/g' /content/stable-diffusion-webui/launch.py \
|
16 |
+
python /content/stable-diffusion-webui/launch.py --skip-torch-cuda-test \
|
17 |
+
git -C /content/stable-diffusion-webui reset --hard \
|
18 |
+
wget https://github.com/camenduru/webui-docker/raw/main/header_patch.py -O /content/header_patch.py \
|
19 |
+
sed -i -e '/demo:/r /content/header_patch.py' /content/stable-diffusion-webui/modules/ui.py \
|
20 |
+
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
|
21 |
+
|
22 |
+
WORKDIR /content
|
23 |
+
USER user
|
24 |
+
CMD python /content/stable-diffusion-webui/launch.py --xformers --listen
|