JcRolling's picture
Update Dockerfile
3847c77
raw
history blame
322 Bytes
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt install wget git python3
RUN adduser --disabled-password --gecos '' user
RUN mkdir /content && chown -R user:user /content
WORKDIR /content
USER user
ADD https://raw.githubusercontent.com/AUTOMATIC1111/stable-diffusion-webui/master/webui.sh
RUN bash webui.sh