Spaces:
Building
Building
Commit
·
8755ac6
1
Parent(s):
bd1b110
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -7,7 +7,9 @@ RUN apt install python3.11-venv -y
|
|
7 |
RUN apt update && apt install ffmpeg libsm6 libxext6 -y
|
8 |
RUN adduser toor
|
9 |
RUN chown -R toor stable-diffusion-webui
|
|
|
10 |
USER toor
|
11 |
RUN /stable-diffusion-webui/webui.sh
|
12 |
EXPOSE 7860
|
|
|
13 |
ENTRYPOINT /stable-diffusion-webui/webui.sh --skip-torch-cuda-test --no-half --listen
|
|
|
7 |
RUN apt update && apt install ffmpeg libsm6 libxext6 -y
|
8 |
RUN adduser toor
|
9 |
RUN chown -R toor stable-diffusion-webui
|
10 |
+
RUN apt install wget curl -y
|
11 |
USER toor
|
12 |
RUN /stable-diffusion-webui/webui.sh
|
13 |
EXPOSE 7860
|
14 |
+
RUN wget https://civitai.com/api/download/models/100675 --content-disposition -O /stable-diffusion-webui/stable-diffusion-webui/models/Stable-diffusion/meinahentai_v4.safetensors
|
15 |
ENTRYPOINT /stable-diffusion-webui/webui.sh --skip-torch-cuda-test --no-half --listen
|