Spaces:
Build error
Build error
Commit
·
d5f9007
1
Parent(s):
8503458
Enable API and instructpix2pix
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Dockerfile Public
|
2 |
|
3 |
# https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/11.7.1/ubuntu2204/devel/cudnn8/Dockerfile
|
4 |
# FROM nvidia/cuda:11.7.1-cudnn8-devel-ubuntu22.04
|
@@ -44,8 +44,10 @@ RUN rm -rfv /content/stable-diffusion-webui/scripts/
|
|
44 |
ADD --chown=user https://github.com/camenduru/webui-docker/raw/main/shared-config.json /content/shared-config.json
|
45 |
ADD --chown=user https://github.com/camenduru/webui-docker/raw/main/shared-ui-config.json /content/shared-ui-config.json
|
46 |
|
47 |
-
ADD --chown=user https://huggingface.co/
|
|
|
|
|
48 |
|
49 |
EXPOSE 7860
|
50 |
|
51 |
-
CMD cd /content/stable-diffusion-webui && python webui.py --xformers --listen --disable-console-progressbars --enable-console-prompts --no-progressbar-hiding --ui-config-file /content/shared-ui-config.json --ui-settings-file /content/shared-config.json
|
|
|
1 |
+
# Dockerfile Public T4
|
2 |
|
3 |
# https://gitlab.com/nvidia/container-images/cuda/-/blob/master/dist/11.7.1/ubuntu2204/devel/cudnn8/Dockerfile
|
4 |
# FROM nvidia/cuda:11.7.1-cudnn8-devel-ubuntu22.04
|
|
|
44 |
ADD --chown=user https://github.com/camenduru/webui-docker/raw/main/shared-config.json /content/shared-config.json
|
45 |
ADD --chown=user https://github.com/camenduru/webui-docker/raw/main/shared-ui-config.json /content/shared-ui-config.json
|
46 |
|
47 |
+
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
|
48 |
+
ADD --chown=user https://huggingface.co/timbrooks/instruct-pix2pix/blob/main/instruct-pix2pix-00-22000.ckpt /content/stable-diffusion-webui/models/Stable-diffusion/instruct-pix2pix-00-22000.ckpt
|
49 |
+
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
|
50 |
|
51 |
EXPOSE 7860
|
52 |
|
53 |
+
CMD cd /content/stable-diffusion-webui && python webui.py --xformers --listen --disable-console-progressbars --enable-console-prompts --no-progressbar-hiding --api --ui-config-file /content/shared-ui-config.json --ui-settings-file /content/shared-config.json
|