Spaces:
Building
Building
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 python3.11-venv -y | |
USER toor | |
RUN stable-diffusion-webui/webui.sh | |
RUN stable-diffusion-webui/webui.sh --skip-torch-cuda-test | |
USER root | |
RUN apt update && apt install ffmpeg libsm6 libxext6 -y | |
USER toor | |
RUN stable-diffusion-webui/webui.sh --skip-torch-cuda-test |