Spaces:
Building
Building
Commit
·
cfa051e
1
Parent(s):
8949b5b
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -5,11 +5,9 @@ RUN git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
|
|
5 |
RUN adduser toor
|
6 |
RUN apt install python3 -y
|
7 |
RUN apt install wget curl -y
|
8 |
-
RUN wget -O /stable-diffusion-webui/models/VAE/vae-ft-mse-840000-ema-pruned.ckpt https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.ckpt --content-disposition
|
9 |
-
RUN ls /stable-diffusion-webui/models/VAE
|
10 |
RUN chown -R toor stable-diffusion-webui
|
11 |
RUN apt install python3.11-venv -y
|
12 |
RUN apt update && apt install ffmpeg libsm6 libxext6 -y
|
13 |
EXPOSE 7860
|
14 |
USER toor
|
15 |
-
ENTRYPOINT ./stable-diffusion-webui/webui.sh --skip-torch-cuda-test --no-half --listen --enable-insecure-extension-access
|
|
|
5 |
RUN adduser toor
|
6 |
RUN apt install python3 -y
|
7 |
RUN apt install wget curl -y
|
|
|
|
|
8 |
RUN chown -R toor stable-diffusion-webui
|
9 |
RUN apt install python3.11-venv -y
|
10 |
RUN apt update && apt install ffmpeg libsm6 libxext6 -y
|
11 |
EXPOSE 7860
|
12 |
USER toor
|
13 |
+
ENTRYPOINT wget -O /stable-diffusion-webui/models/VAE/vae-ft-mse-840000-ema-pruned.ckpt https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.ckpt --content-disposition && ./stable-diffusion-webui/webui.sh --skip-torch-cuda-test --no-half --listen --enable-insecure-extension-access
|