Spaces:
Paused
Paused
File size: 338 Bytes
f208539 674d2c3 5494a0d b85122c 988d572 5e841ae a2d074f 031501d 9267e3f b85122c |
1 2 3 4 5 6 7 8 9 10 |
FROM kalilinux/kali-rolling
RUN apt update && apt upgrade -y
RUN apt install git -y
RUN git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
RUN useradd -m toor
RUN apt install python3 -y
RUN chown -R toor stable-diffusion-webui
RUN apt install apt install python3.11-venv -y
USER toor
RUN stable-diffusion-webui/webui.sh |